-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "my-app",
"version": "0.1.2",
"private": true,
"workspaces": [
"packages/cuww-runtime-env",
"packages/cuww-config",
"packages/cuww-cli",
"packages/core",
"packages/cuww-app"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"prestart": "yarn cli env:build",
"start": "next start",
"lint": "next lint",
"cuww": "yarn -s run cli",
"cli": "node ./console/index.mjs",
"build:all": "yarn build:env && yarn build:config && yarn build:cli",
"publish:all": "yarn publish:env ; yarn publish:config ; yarn publish:cli",
"build:env": "yarn workspace @cuww/runtime-env build",
"publish:env": "yarn workspace @cuww/runtime-env publish --access public",
"build:config": "yarn workspace @cuww/config build",
"publish:config": "yarn workspace @cuww/config publish --access public",
"build:cli": "yarn workspace @cuww/cli build",
"publish:cli": "yarn workspace @cuww/cli publish --access public",
"version:patch": "yarn workspaces run version:patch",
"version:minor": "yarn workspaces run version:minor",
"version:major": "yarn workspaces run version:major"
},
"dependencies": {
"@cuww/runtime-env": "^1.0.2",
"@types/node": "^20.3.1",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"ahooks": "^3.7.7",
"antd": "^5.4.6",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"jotai": "^2.0.4",
"next": "13.3.1",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-intl": "^6.4.4",
"typescript": "5.0.4",
"yarn": "^1.22.19"
},
"devDependencies": {
"@formatjs/ts-transformer": "^3.13.3",
"babel-plugin-import": "^1.13.6"
}
}