forked from velotio-tech/typescript-express-web-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "my-app",
"version": "0.0.0",
"scripts": {
"build": "node build.js",
"lint": "eslint . --ext .ts",
"start": "node ./dist/index.js --env=production",
"start:dev": "ts-node -r tsconfig-paths/register ./src",
"test": "ts-node -r tsconfig-paths/register ./spec"
},
"dependencies": {
"@types/redis": "^2.8.22",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.0",
"http-status-codes": "^1.4.0",
"jest": "^26.1.0",
"morgan": "^1.10.0",
"pg": "^8.2.1",
"reflect-metadata": "^0.1.13",
"tedis": "^0.1.12",
"typeorm": "^0.2.25",
"typescript": "^3.9.5",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/find": "^0.2.1",
"@types/helmet": "0.0.47",
"@types/jasmine": "^3.5.10",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.13",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"find": "^0.3.0",
"fs-extra": "^9.0.1",
"jasmine": "^3.5.0",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0"
}
}