-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
68 lines (68 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cboard-api",
"version": "0.0.2",
"private": true,
"description": "New Swagger API Project",
"keywords": [],
"author": "Martin Bedouret",
"contributors": [
"Martin Bedouret <[email protected]>"
],
"license": "",
"main": "app.js",
"dependencies": {
"azure-storage": "^2.10.0",
"bcryptjs": "^2.3.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"connect-mongo": "^1.3.2",
"cors": "^2.8.5",
"dotenv": "^5.0.1",
"email-verification": "^0.4.6",
"express": "^4.12.3",
"express-session": "^1.15.2",
"https": "^1.0.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.15",
"ms": "^2.1.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"pem": "^1.13.2",
"rand-token": "^0.4.0",
"sendgrid": "^4.10.0",
"should": "^7.1.0",
"snyk": "^1.124.1",
"supertest": "^3.0.0",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.1",
"translate-api": "^0.3.12",
"uuid": "^3.3.2",
"validator": "^7.0.0",
"yamljs": "^0.2.9"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"nodemon": "^1.18.7",
"prettier": "1.10.2"
},
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "swagger project test",
"precommit": "lint-staged",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=6.0"
},
"snyk": true
}