forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 773 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
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:dev": "nest build --watch --webpack",
"start": "node dist/main",
"test:e2e": "echo 'No e2e tests implemented yet.'"
},
"dependencies": {
"@nestjs/common": "6.10.14",
"@nestjs/core": "6.10.14",
"@nestjs/platform-express": "6.10.14",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.4",
"typescript": "3.7.2"
},
"devDependencies": {
"@types/node": "12.12.21",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"tslint": "5.20.1",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-node-externals": "1.7.2"
}
}