-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.27 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": "ued-landing",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"dev": "PORT=3004 next dev",
"dev:node": "NODE_ENV=development node server/index.js",
"build": "next build",
"export": "next export",
"start": "PORT=3004 next start",
"deploy": "zx ./scripts/deploy.mjs",
"restart": "./scripts/start.sh",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "https://github.com/DTStack/UED"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.21.7",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"koa": "^2.13.4",
"koa-router": "^12.0.0",
"koa2-cors": "^2.0.6",
"mongoose": "^6.5.1",
"next": "^12.2.2",
"node-schedule": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.15",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.21.0",
"eslint-config-next": "12.2.3",
"sass": "^1.53.0",
"standard-version": "^9.5.0",
"zx": "^7.0.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}