This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "schedule-backend",
"version": "1.0.0",
"description": "The official package of the schedule backend api",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=prod && node index.js",
"dev": "run-script-os",
"dev:win32": "set NODE_ENV=dev&&nodemon index.js",
"dev:darwin:linux": "NODE_ENV=dev nodemon index.js",
"dev:default": "NODE_ENV=dev nodemon index.js",
"prod": "run-script-os",
"prod:win32": "set NODE_ENV=prod&&node index.js",
"prod:darwin:linux": "NODE_ENV=prod node index.js",
"prod:default": "NODE_ENV=prod node index.js",
"depcheck": "depcheck . --ignores=eslint",
"lint": "standard",
"test": "jest tests/schedule",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DSCUAIC/schedule-backend.git"
},
"keywords": [
"scheduler"
],
"author": "Teodor Proca",
"license": "ISC",
"bugs": {
"url": "https://github.com/DSCUAIC/schedule-backend/issues"
},
"homepage": "https://github.com/DSCUAIC/schedule-backend#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^6.5.5",
"axios": "^0.19.2",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cloudinary": "^1.21.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cryptr": "^6.0.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.9",
"multer": "^1.4.2",
"winston": "^3.2.1"
},
"devDependencies": {
"depcheck": "^0.9.2",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"nodemon": "^2.0.3",
"run-script-os": "^1.1.1",
"standard": "^14.3.3",
"supertest": "^4.0.2"
},
"jest": {
"testRegex": ".spec.js",
"testPathIgnorePatterns": [
"node_modules"
],
"testEnvironment": "node"
},
"standard": {
"ignore": [
"tests/**/*.js"
]
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run depcheck && npm run test"
}
}
}