-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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": "node-book",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"start": "npm run build && node dist/server.js",
"start:dev": "babel-node src/server.js",
"test:integration": "NODE_ENV=test mocha --opts test/integration/mocha.opts test/integration/**/*_spec.js",
"test:unit": "NODE_ENV=test mocha --opts test/unit/mocha.opts test/unit/**/*_spec.js",
"test": "npm run test:unit && npm run test:integration",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --fix --ext .js",
"prettier:list": "prettier --check 'src/**/*.js'",
"prettier:fix": "prettier --write 'src/**/*.js'",
"style:fix": "npm run lint:fix & npm run prettier:fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-plugin-node": "^10.0.0",
"mocha": "^6.2.3",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"supertest": "^4.0.2"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.15.2",
"config": "^1.29.4",
"express": "^4.14.0",
"express-acl": "^2.0.2",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.7.13"
}
}