-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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": "apollo-tsed",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "yarn tsc",
"tsc": "tsc --project tsconfig.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "cross-env NODE_ENV=development nodemon --watch \"src/**/*.ts\" --ignore \"node_modules/**/*\" --exec ts-node src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"typeorm": "tsed typeorm",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"@tsed/ajv": "5.57.7",
"@tsed/common": "5.57.7",
"@tsed/core": "5.57.7",
"@tsed/di": "5.57.7",
"@tsed/graphql": "5.57.7",
"@tsed/platform-express": "5.57.7",
"@tsed/typeorm": "5.57.7",
"ajv": "6.12.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"concurrently": "5.2.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cross-env": "7.0.2",
"express": "4.17.1",
"method-override": "3.0.0",
"pg": "8.2.1",
"typeorm": "0.2.25"
},
"devDependencies": {
"@tsed/cli-plugin-typeorm": "1.14.1",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.6",
"@types/express": "4.17.6",
"@types/jest": "26.0.0",
"@types/method-override": "0.0.31",
"@types/node": "14.0.13",
"@types/supertest": "2.0.9",
"concurrently": "5.2.0",
"jest": "26.0.1",
"nodemon": "2.0.4",
"supertest": "4.0.2",
"ts-jest": "26.1.0",
"ts-node": "8.10.2",
"typescript": "3.9.5"
}
}