-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 952 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 952 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
27
28
29
30
31
32
33
34
35
{
"name": "uo-arma-dashboard",
"version": "1.0.0",
"scripts": {
"clean": "rm -rf .next",
"dev": "NODE_ENV=development nodemon",
"build": "NODE_ENV=production npm run clean && next build && tsc && tsc --project tsconfig.server.json",
"start": "node .next/server"
},
"devDependencies": {
"@types/antd": "^1.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/next": "^8.0.3",
"@types/node-fetch": "^2.3.2",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"@zeit/next-less": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-import": "^1.11.0",
"less": "^3.9.0",
"nodemon": "^1.18.11",
"ts-node": "^8.0.3",
"typescript": "^3.4.3"
},
"dependencies": {
"antd": "^3.16.2",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"next": "^8.0.4",
"node-fetch": "^2.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}