-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "next-boilerplate",
"scripts": {
"dev": "nodemon server -i app",
"build": "NODE_ENV=production next build app",
"start": "NODE_ENV=production node server",
"test": "NODE_ENV=test JEST=true jest --verbose"
},
"dependencies": {
"autoprefixer": "^9.4.7",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.3",
"cssnano": "^4.1.8",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"glob": "^7.1.3",
"next": "^7.0.2",
"next-redux-wrapper": "^3.0.0-alpha.0",
"next-routes": "^1.4.2",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"normalize.css": "^8.0.1",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"raw-loader": "^1.0.0",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"sw-precache-webpack-plugin": "^0.11.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^24.0.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"jest": "^24.0.0",
"jest-css-modules": "^1.1.0",
"jest-webpack-resolver": "^0.3.0"
}
}