-
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) · 866 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 866 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.6.0",
"@nestjs/core": "^6.6.0",
"@nestjs/graphql": "^6.4.2",
"@nestjs/platform-express": "^6.6.0",
"apollo-server-express": "^2.9.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.10.0",
"graphql": "^14.5.3",
"graphql-subscriptions": "^1.1.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"type-graphql": "^0.17.5",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/node": "^12.7.2",
"ts-node": "^8.3.0",
"tslint": "^5.19.0"
}
}