-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "mvc-boilerplate",
"version": "1.0.0",
"description": "boilerplate code for mvc application with node, express, auth middleware, api, and mongodb",
"main": "server/index.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/index.js",
"start:dev": "concurrently \"nodemon --ignore 'public/*'\" \"npm run public\"",
"public": "cd public && npm run start",
"install": "cd public && npm install",
"build": "cd public && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schmidgallm/node-mvc-boilerplate.git"
},
"keywords": [
"node",
"express",
"api",
"auth",
"mongodb",
"mvc",
"model",
"view",
"controller"
],
"author": "Michael Schmidgall",
"license": "MIT",
"bugs": {
"url": "https://github.com/schmidgallm/node-mvc-boilerplate/issues"
},
"homepage": "https://github.com/schmidgallm/node-mvc-boilerplate#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^5.0.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.3.0",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"mongoose": "^5.7.13",
"morgan": "^1.9.1"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1"
}
}