-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "express-jwt-acl-mongoose-starter",
"version": "0.0.1",
"description": "Express & Mongoose starter kit written in ES6 for NodeJS.",
"main": "src/server.js",
"repository": {
"type": "git",
"url": "https://github.com/patrickvaler/express-jwt-acl-mongoose-starter.git"
},
"author": "Patrick Valer <[email protected]>",
"license": "MIT",
"dependencies": {
"acl": "^0.4.10",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.7",
"morgan": "^1.8.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"q": "^1.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.6",
"babel-preset-node6": "^11.0.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^5.2.0",
"mockgoose": "^7.3.1",
"nodemon": "^1.11.0"
},
"scripts": {
"serve": "NODE_ENV=dev nodemon src/server.js --exec \"npm run lint -s && babel-node\"",
"build": "NODE_ENV=prod babel src --out-dir build",
"lint": "./node_modules/.bin/eslint src",
"lint:fix": "./node_modules/.bin/eslint src --fix",
"test": "NODE_ENV=test mocha --timeout 30000 --compilers js:babel-register"
}
}