-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nextjs-boilerplate",
"description": "MERN Boilerplate based on NextJS",
"repository": "https://github.com/RcKeller/NextJS-Boilerplate",
"version": "7.0.0",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js",
"build": "cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=production node server/index.js",
"lint": "node node_modules/eslint/bin/eslint.js .",
"analyze": "cross-env ANALYZE=1 npm run build",
"test": "cross-env NODE_ENV=test jest",
"test:single": "cross-env NODE_ENV=test jest -t",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --coverage"
},
"dependencies": {
"apicache": "^1.2.1",
"auto-bind": "^1.2.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-session": "^1.15.6",
"helmet": "^3.12.1",
"less": "^2.7.3",
"lodash": "^4.17.11",
"lorem-ipsum": "^1.0.6",
"method-override": "^2.3.10",
"morgan": "^1.9.1",
"next": "^7.0.0",
"node-sass": "^4.9.2",
"normalize.css": "^8.0.0",
"nprogress": "^0.2.0",
"openssl-self-signed-certificate": "^1.1.6",
"prop-types": "^15.6.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"react-md": "^1.6.1",
"react-table": "^6.8.6",
"webpack-bundle-analyzer": "^3.0.2"
},
"devDependencies": {
"@zeit/next-css": "^1.0.0",
"@zeit/next-sass": "^1.0.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^5.2.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^2.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"next-compose-plugins": "^2.1.1",
"nodemon": "^1.12.1",
"url-loader": "^1.1.1",
"webpack": "^4.19.1"
}
}