-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 850 Bytes
/
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
{
"name": "nest-typescript-starter",
"version": "1.0.1",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "ts-node src/index",
"prestart:prod": "npm run build",
"start:prod": "node dist/main.js"
},
"dependencies": {
"@nestjs/common": "6.3.1",
"@nestjs/core": "6.3.1",
"@nestjs/cqrs": "6.0.0",
"@nestjs/graphql": "6.2.4",
"@nestjs/platform-express": "6.3.1",
"apollo-server-express": "2.6.1",
"class-transformer": "0.2.3",
"class-validator": "0.9.1",
"graphql": "14.3.1",
"graphql-subscriptions": "1.1.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.2",
"typescript": "3.5.1"
},
"devDependencies": {
"@types/node": "10.14.8",
"ts-node": "8.2.0",
"tslint": "5.17.0"
}
}