forked from sakuraNouta/learn-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 911 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "learn-react",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"lerna": "^3.22.1"
},
"version": "1.0.0",
"scripts": {
"start": "lerna run --parallel start",
"start:dva": "lerna run --stream --scope dva-app start",
"start:vite": "lerna run --stream --scope vite-react-ts-app start",
"build": "lerna run --parallel build",
"build:dva": "lerna run --stream --scope dva-app build",
"build:vite": "lerna run --stream --scope vite-react-ts-app build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakuraNouta/learn-react.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sakuraNouta/learn-react/issues"
},
"homepage": "https://github.com/sakuraNouta/learn-react#readme",
"dependencies": {
"ahooks": "^3.7.0"
}
}