-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.78 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
{
"name": "nextjs-boilerplate",
"version": "1.0.0",
"scripts": {
"server": "node server.js",
"test": "mocha --reporter spec __tests__/**/*.test.js",
"test:watch": "npm run test -- --watch",
"dev": "node server.js",
"build": "next build",
"watch": "nodemon server.js -w server.js",
"start": "next start -p $PORT",
"heroku-postbuild": "heroku-nextjs-build",
"lint": "standard --verbose"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**"
]
},
"engines": {
"node": "6.9.x"
},
"cacheDirectories": [
"nextjs/node_modules"
],
"dependencies": {
"@mars/heroku-nextjs-build": "^2.0.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-inline-react-svg": "^0.4.0",
"babel-plugin-styled-components": "^1.1.4",
"body-parser": "^1.17.1",
"browser-cookies": "^1.1.0",
"colors": "^1.1.2",
"eslint-plugin-react": "^7.0.1",
"express": "^4.15.2",
"form-data": "^2.1.4",
"isomorphic-unfetch": "^1.0.0",
"next": "2.2.0",
"next-redux-wrapper": "^1.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-dropzone": "^3.13.1",
"react-redux": "^5.0.1",
"react-redux-toastr": "^6.2.6",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^6.6.3",
"redux-thunk": "^2.1.0",
"styled-components": "^2.0.0-17",
"uuid": "^3.0.1"
},
"devDependencies": {
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-friendly-formatter": "^2.0.7",
"expect": "^1.20.2",
"mocha": "^3.3.0",
"next-routes": "^1.0.24",
"npm-run-all": "^4.0.2",
"standard": "^10.0.2",
"supertest": "^3.0.0"
},
"author": "Spencer Bigum",
"license": "ISC"
}