-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
54
55
56
57
58
59
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:server": "tsc --project ./server/tsconfig.json",
"build:next": "next build",
"build": "npm run build:next && npm run build:server",
"start": "NODE_ENV=production node server/dist/index.js",
"dev": "ts-node --project ./server/tsconfig.json ./server/index.ts"
},
"author": "",
"license": "ISC",
"engines": {
"node": "12.16.x"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-typescript": "^7.9.0",
"@types/antd": "^1.0.0",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/http-proxy-middleware": "^0.19.3",
"@types/lodash": "^4.14.151",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@umijs/plugin-antd": "^0.5.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-inline-import": "^3.0.0",
"null-loader": "^4.0.0",
"postcss-sorting": "^5.0.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"webpack-filter-warnings-plugin": "^1.2.1",
"@ant-design/dark-theme": "^2.0.1",
"antd": "^4.1.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"http-proxy-middleware": "^1.0.3",
"ky": "^0.20.0",
"less": "^3.11.1",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.15",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"next": "^9.3.4",
"postcss-scss": "^2.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"uid-safe": "^2.1.5"
}
}