-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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": "next-boilerplate",
"version": "0.3.0",
"description": "simple boilerplate for next.js",
"scripts": {
"eslint": "eslint src/ --fix",
"jest": "jest --passWithNoTests",
"test": "npm run eslint && npm run jest",
"dev": "next ./src -p 3000",
"export": "next build ./src && next export ./src -o .statichtml/"
},
"author": "thundermiracle",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.1.2",
"@material-ui/icons": "^4.2.1",
"@material-ui/styles": "4.1.2",
"next": "^8.1.0",
"next-mui-helper": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"babel-eslint": "^10.0.2",
"babel-plugin-module-resolver": "^3.2.0",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.7.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-babel-module": "^5.0.0-beta.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.0",
"prettier": "^1.16.4",
"jest": "^24.8.0",
"react-hot-loader": "^4.3.11"
}
}