forked from zero-to-mastery/drum-root-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 991 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
48
49
50
51
52
{
"name": "drum-root-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"formidable": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "^24.0.25",
"eslint": "^6.7.0",
"faker": "^4.1.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.4.3",
"nodemon": "^2.0.1",
"prettier": "^1.19.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"prettier": {
"singleQuote": false
}
}