-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (42 loc) · 1.19 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
40
41
42
43
{
"name": "@vitest/example-test",
"private": true,
"license": "MIT",
"main": "dist/src/main.js",
"scripts": {
"start": "nest start",
"build": "nest build",
"test": "vitest --run --dir tests --coverage.reportsDirectory coverage"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"csrf-csrf": "^3.0.3",
"express": "^4.18.2",
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.3.0",
"@swc/core": "^1.3.103",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.3",
"@vitest/coverage-v8": "^1.1.3",
"unplugin-swc": "^1.4.4",
"vitest": "^1.1.3",
"vitest-mock-express": "^2.0.3",
"typescript": "^5.3.3",
"source-map-support": "^0.5.21",
"node-mocks-http": "^1.14.1"
},
"stackblitz": {
"startCommand": "npm run test"
}
}