-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "MobxForReal",
"version": "1.0.0",
"main": "app/server.js",
"author": "withYJ <withyj@codeit.kr>",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch app --watch app/server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.0",
"express": "^4.17.1",
"mobx": "^5.11.0",
"mobx-react": "^6.1.1",
"next": "^9.0.2",
"next-cookies": "^1.1.2",
"next-routes": "^1.4.2",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/next": "^8.0.6",
"@types/node": "^12.6.6",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"typescript": "^3.5.3"
}
}