-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
56
57
58
59
60
61
62
63
{
"name": "game-of-thrones",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run serve",
"serve": "node -r ts-node/register/transpile-only",
"watch": "nodemon",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"watch-debug": "nodemon --exec node --inspect-brk -r ts-node/register ./src/main.ts",
"build": "npm run build-ts",
"build-ts": "rm -rf dist && tsc"
},
"dependencies": {
"axios": "^0.19.2",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"concurrently": "^5.0.2",
"core-util-is": "^1.0.2",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"moment": "^2.27.0",
"mongoose": "^5.8.7",
"morgan": "~1.9.1",
"nconf": "^0.10.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.0",
"@types/http-errors": "^1.6.3",
"@types/jest": "^25.1.0",
"@types/mongoose": "^5.5.41",
"@types/morgan": "^1.7.37",
"@types/nconf": "^0.10.0",
"@types/node": "^12.6.1",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^4.1.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"cpy-cli": "^3.0.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.3.0",
"eslint-plugin-node": "^11.0.0",
"jest": "^25.1.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.1.3",
"ts-jest": "^25.0.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"engines": {
"node": ">=12.16.1"
}
}