-
-
Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathpackage.json
39 lines (39 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
39
{
"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": "11.0.12",
"@nestjs/core": "11.0.12",
"@nestjs/platform-express": "11.0.12",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"typescript": "5.8.2"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.23.0",
"@nestjs/cli": "11.0.5",
"@nestjs/schematics": "11.0.2",
"@types/node": "22.13.14",
"eslint": "9.23.0",
"eslint-plugin-prettier": "5.2.5",
"globals": "16.0.0",
"start-server-webpack-plugin": "2.2.5",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"webpack": "5.98.0",
"webpack-cli": "6.0.1",
"webpack-node-externals": "3.0.0",
"typescript-eslint": "8.28.0"
}
}