-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
50
51
52
{
"name": "read-the-game-back",
"version": "0.0.1",
"description": "Read the Game back",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p ./tsconfig.json",
"test": "tsc --noEmit -p ./tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node src/main.ts",
"seed": "ts-node src/seed.ts",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"dependencies": {
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.9.6",
"class-transformer": "^0.3.1",
"class-validator": "^0.10.1",
"graphql": "^14.5.8",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^4.0.5",
"mysql": "^2.17.1",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"type-graphql": "^0.17.6",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/faker": "^4.1.8",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/node-fetch": "^2.5.4",
"@types/supertest": "^2.0.8",
"faker": "^4.1.0",
"node-ts": "^5.0.3",
"prettier": "^1.18.2",
"ts-loader": "^6.1.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"resolutions": {
"class-validator": "^0.10.1"
}
}