forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 KB
/
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
33
34
35
36
37
38
{
"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 --webpackPath webpack-hmr.config.js",
"start": "node dist/main",
"lint": "eslint '{src,apps,libs,test}/**/*.ts' --fix",
"test": "echo 'No tests implemented yet.'",
"test:e2e": "echo 'No e2e tests implemented yet.'"
},
"dependencies": {
"@nestjs/common": "9.0.1",
"@nestjs/core": "9.0.1",
"@nestjs/platform-express": "9.0.1",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.5",
"typescript": "4.7.4"
},
"devDependencies": {
"@nestjs/cli": "9.0.0",
"@nestjs/schematics": "9.0.1",
"@types/node": "18.0.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"start-server-webpack-plugin": "2.2.5",
"ts-loader": "9.3.1",
"ts-node": "10.8.2",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-node-externals": "3.0.0"
}
}