-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 KB
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
{
"name": "happy-backend",
"version": "1.1",
"description": "hAPPy-API Web-Engineering II project",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/cors": "^2.8.4",
"@types/del": "^3.0.1",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/lokijs": "^1.5.2",
"@types/mocha": "^5.2.5",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"@types/node": "^8.10.30",
"@types/nodemailer": "^4.6.5",
"@types/supertest": "^2.0.6",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"prettier": "1.14.2",
"pretty-quick": "^1.7.0",
"supertest": "^3.3.0",
"ts-node": "3.3.0",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"del": "^3.0.0",
"express": "^4.15.4",
"jsonwebtoken": "^8.3.0",
"lokijs": "^1.5.5",
"morgan": "^1.9.1",
"multer": "^1.4.0",
"nodemailer": "^6.4.16",
"pg": "^7.4.3",
"typeorm": "0.2.25",
"util": "^0.11.0",
"winston": "^3.1.0"
},
"scripts": {
"start": "NODE_ENV=dev ts-node src/index.ts",
"start-prod": "NODE_ENV=production ts-node src/index.ts",
"test": "NODE_ENV=test mocha --require ts-node/register ./tests/routes/*.spec.ts --timeout 10000 --exit"
}
}