-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"prod-start": "next start",
"prettier": "prettier --write \"./**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"markdown-to-jsx": "^6.11.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"mobx-state-tree": "^3.15.0",
"moment": "^2.24.0",
"next": "9.3.1",
"path-match": "^1.2.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-highlight": "^0.12.0",
"react-image-animated-previewer": "^1.0.2",
"react-transition-group": "^4.4.2",
"react-waypoint": "^9.0.2",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"babel-plugin-styled-components": "^1.10.7",
"html-loader": "^1.1.0",
"markdown-loader": "^5.1.0",
"prettier": "^2.5.1"
}
}