-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "nextjs-express-mongoose-crudify-boilerplate",
"version": "4.0.0",
"description": "Next.js (React) + Redux + Express REST API + Mongoose CRUD boilerplate.",
"main": "server/server.js",
"license": "ISC",
"scripts": {
"test": "echo 'Running Standard.js and Jasmine unit tests...\n' && yarn lint && yarn unit",
"unit": "jasmine",
"lint": "standard",
"fix": "standard --fix",
"dev": "nodemon -w server -w package.json server/server.js",
"build": "next build",
"heroku-postbuild": "next build",
"start": "NODE_ENV=production node server/server.js"
},
"now": {
"name": "nextjs-express-mongoose-crudify-boilerplate",
"alias": "nextjs-express-mongoose-crudify-boilerplate"
},
"engines": {
"node": "^10.13.0",
"yarn": "^1.3.2"
},
"dependencies": {
"body-parser": "^1.15.2",
"dotenv": "^6.2.0",
"express": "^4.14.0",
"glob": "^7.1.2",
"isomorphic-fetch": "^2.2.1",
"isomorphic-unfetch": "^2.0.0",
"lodash": "^4.17.4",
"mongoose": "^4.7.6",
"mongoose-crudify": "^0.2.0",
"next": "^8.0.3",
"next-redux-wrapper": "^3.0.0-alpha.1",
"next-routes": "^1.4.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-api": "^0.11.1",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"jasmine": "^3.3.1",
"nodemon": "^1.12.1",
"standard": "^12.0.1"
}
}