-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
51
52
53
{
"name": "trackbymebackend",
"description": "Backend service for tmb-web react application",
"version": "1.0.0",
"author": "<Fatih, Gokcan, Onur, Orcun>",
"scripts": {
"dev": "NODE_ENV=development nodemon -e ts --exec \"npm run compile\"",
"test": "NODE_ENV=test mocha -r ts-node/register test/*.*.ts",
"testprod": "NODE_ENV=production mocha -r ts-node/register test/*.*.ts",
"start": "nodemon -e ts --exec \"npm run compile\"",
"start:prod": "NODE_ENV=production nodemon -e ts --exec \"npm run compile\"",
"compile": "tsc -p tsconfig.json && node ./bin/www"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"del": "^3.0.0",
"dotenv": "^5.0.1",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"express-limiter": "^1.6.1",
"express-subdomain": "^1.0.5",
"helmet": "^3.9.0",
"jsonwebtoken": "^8.1.0",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"path": "^0.12.7",
"pg": "^7.4.0",
"redis": "^2.8.0",
"supertest": "^3.0.0",
"tslint": "^5.8.0",
"util": "^0.10.3"
},
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/body-parser": "1.17.0",
"@types/chai": "^4.0.10",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/jsonwebtoken": "^7.2.5",
"@types/method-override": "0.0.31",
"@types/mocha": "^5.2.0",
"@types/morgan": "^1.7.35",
"@types/node": "^10.1.1",
"@types/supertest": "^2.0.4",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nodemon": "^1.12.1",
"ts-node": "^6.0.3",
"typescript": "^2.6.2"
}
}