-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "nextjs-config",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx supervisor -i .next,node_modules,out -e html,js server.js",
"build": "next build",
"now-build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "./node_modules/.bin/eslint . --fix",
"export": "next export"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-plugin-styled-components": "^1.10.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"immer": "^2.1.4",
"materialize-css": "^1.0.0",
"next": "^9.0.6",
"next-transpile-modules": "^2.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^4.12.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.5.1",
"prettier": "^1.10.2"
}
}