-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1023 Bytes
/
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
{
"name": "and-library-api",
"version": "0.0.1",
"description": "REST API for and-library",
"main": "index.js",
"scripts": {
"lint": "eslint --ext js ./src",
"lint-fix": "yarn lint --fix",
"test": "jest",
"test-watch": "jest --watch",
"precommit": "lint-staged && yarn lint"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"AND",
"Digital"
],
"author": "tiagomsg",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"mongodb": "^2.2.16",
"mongoose": "^5.0.1",
"slug": "^0.9.1",
"supertest": "^3.1.0",
"winston": "^2.4.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"jest": "23.1.0",
"lint-staged": "^7.0.0",
"mockingoose": "^2.9.1",
"nodemon": "^1.14.11"
}
}