-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
54
55
{
"name": "backend",
"license": "MIT",
"version": "0.0.0",
"scripts": {
"start": "ts-node src/index.ts --env=development",
"deploy": "ts-node src/index.ts --env=production",
"dev": "nodemon",
"test": "nodemon --env=test"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node -r tsconfig-paths/register ./src"
},
"dependencies": {
"axios": "^0.20.0",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.6.1",
"helmet": "^4.1.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"tslib": "^2.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/find": "^0.2.1",
"@types/helmet": "0.0.48",
"@types/jasmine": "^3.5.14",
"@types/jsonfile": "^6.0.0",
"@types/morgan": "^1.9.1",
"@types/node": "^14.10.2",
"@types/supertest": "^2.0.10",
"find": "^0.3.0",
"fs-extra": "^9.0.1",
"jasmine": "^3.6.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}