-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 915 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 915 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
33
34
35
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/server.js",
"test": "jasmine-ts \"./**/*.spec.ts\""
},
"dependencies": {
"@nestjs/common": "^4.0.0",
"@nestjs/core": "^4.0.0",
"@nestjs/microservices": "^4.0.0",
"@nestjs/testing": "^4.0.0",
"@nestjs/websockets": "^4.0.0",
"jasmine-spec-reporter": "^4.2.1",
"redis": "^2.7.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.4.0",
"typescript": "^2.5.2",
"uuid": "3.1.0"
},
"devDependencies": {
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.28",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"jasmine-ts": "^0.2.1",
"nodemon": "^1.12.1",
"ts-node": "^3.3.0"
}
}