-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nullableenum",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npm run barrels && tsc --project tsconfig.compile.json",
"barrels": "barrelsby --config .barrelsby.json",
"start": "npm run barrels && tsnd --inspect --exit-child --cls --ignore-watch node_modules --respawn --transpile-only src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"test": "npm run test:coverage ",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "npm run test:unit "
},
"dependencies": {
"@tsed/ajv": "^7.73.0",
"@tsed/common": "^7.73.0",
"@tsed/core": "^7.73.0",
"@tsed/di": "^7.73.0",
"@tsed/engines": "^7.73.0",
"@tsed/exceptions": "^7.73.0",
"@tsed/json-mapper": "^7.73.0",
"@tsed/logger": "^6.7.5",
"@tsed/logger-file": "^6.7.5",
"@tsed/openspec": "^7.73.0",
"@tsed/platform-cache": "^7.73.0",
"@tsed/platform-exceptions": "^7.73.0",
"@tsed/platform-express": "^7.73.0",
"@tsed/platform-log-middleware": "^7.73.0",
"@tsed/platform-middlewares": "^7.73.0",
"@tsed/platform-params": "^7.73.0",
"@tsed/platform-response-filter": "^7.73.0",
"@tsed/platform-views": "^7.73.0",
"@tsed/schema": "^7.73.0",
"@tsed/swagger": "^7.73.0",
"ajv": "^8.16.0",
"barrelsby": "^2.8.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"dotenv-flow": "^4.1.0",
"express": "^4.19.2",
"method-override": "^3.0.0"
},
"devDependencies": {
"@tsed/cli-plugin-jest": "5.1.2",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/method-override": "^0.0.35",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.6",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "npm",
"runtime": "node"
}
}