-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "aws-fargate-codepipeline-deploy",
"version": "0.0.0",
"scripts": {
"start": "cross-env NODE_ENV=production ts-node --transpile-only src/server.ts",
"dev": "cross-env NODE_ENV=development nodemon --watch src --delay 1 --exec 'ts-node' src/server.ts",
"test": "jest --forceExit --detectOpenHandles",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"dependencies": {
"bcrypt": "3.0.8",
"class-transformer": "0.2.3",
"class-validator": "0.11.0",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"cross-env": "7.0.0",
"dotenv": "8.2.0",
"envalid": "6.0.1",
"express": "4.17.1",
"helmet": "3.21.2",
"hpp": "0.2.3",
"jest": "25.1.0",
"jsonwebtoken": "8.5.1",
"morgan": "1.9.1",
"ts-jest": "25.2.0",
"ts-node": "8.6.2",
"typescript": "3.7.5"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.6",
"@types/express": "4.17.2",
"@types/helmet": "0.0.45",
"@types/hpp": "0.2.1",
"@types/jest": "25.1.2",
"@types/jsonwebtoken": "8.3.7",
"@types/morgan": "1.7.37",
"@types/node": "13.7.0",
"@types/supertest": "2.0.8",
"supertest": "4.0.2",
"tslint": "6.0.0",
"tslint-config-airbnb": "5.11.2"
}
}