-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 851 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 851 Bytes
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
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "ts-node src/main",
"prestart:prod": "npm run build",
"start:prod": "node dist/main.js"
},
"dependencies": {
"@nestjs/common": "6.5.3",
"@nestjs/core": "6.5.3",
"@nestjs/graphql": "6.4.2",
"@nestjs/platform-express": "6.5.3",
"apollo-server-express": "2.7.1",
"class-transformer": "0.2.3",
"class-validator": "0.9.1",
"graphql": "14.4.2",
"graphql-subscriptions": "1.1.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.2",
"type-graphql": "0.17.4",
"typescript": "3.5.3"
},
"devDependencies": {
"@types/node": "10.14.13",
"ts-node": "8.3.0",
"tslint": "5.18.0"
}
}