-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 995 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 995 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
36
37
38
{
"name": "nestjs-project",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "tsc",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"migrate": "sequelize db:migrate"
},
"dependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/platform-express": "^6.0.0",
"@nestjs/platform-socket.io": "^6.2.4",
"@nestjs/websockets": "^6.2.4",
"@types/node": "^12.0.10",
"@types/socket.io": "^2.1.2",
"body-parser": "^1.18.3",
"nestjs": "^0.0.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"typescript-collections": "latest",
"yarn": "^1.16.0"
},
"devDependencies": {
"nodemon": "^1.18.9",
"ts-node": "^8.1.0",
"tsconfig-paths": "3.8.0"
}
}