-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 758 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 758 Bytes
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
{
"name": "moon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"build:test": "cross-env NODE_ENV=test --mode=test next build",
"build": "cross-env NODE_ENV=production --mode=production next build",
"start:test": "cross-env NODE_ENV=test --mode=test next start",
"start": "cross-env NODE_ENV=production --mode=production next start",
"lint": "next lint"
},
"dependencies": {
"antd": "^5.6.3",
"autoprefixer": "10.4.14",
"cross-env": "^7.0.3",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"next": "13.4.7",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.63.6",
"tailwindcss": "3.3.2"
}
}