-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 845 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
{
"name": "collectors-db",
"version": "5.1.1",
"description": "",
"main": "index.js",
"author": "Jennifer Johnson",
"license": "ISC",
"scripts": {
"start": "nodemon index.js",
"test": "mocha",
"lint": "eslint server/** && eslint public/main.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"dependencies": {
"chai": "^4.2.0",
"cookie-parser": "^1.4.4",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"google-spreadsheet": "^3.0.3",
"husky": "^4.2.1",
"mocha": "^7.0.1",
"nodemon": "^1.19.3",
"path": "^0.12.7",
"sinon": "^8.1.1",
"xss": "^1.0.8"
},
"devDependencies": {
"eslint": "^6.7.2",
"jsdom": "16.1.0",
"sinon-chai": "^3.5.0"
}
}