-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.02 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
{
"name": "tsed-demo",
"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 -r tsconfig-paths/register src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@tsed/ajv": "^7.44.1",
"@tsed/cli": "^4.6.4",
"@tsed/common": "^7.44.1",
"@tsed/core": "^7.44.1",
"@tsed/di": "^7.44.1",
"@tsed/engines": "^7.44.1",
"@tsed/exceptions": "^7.44.1",
"@tsed/json-mapper": "^7.44.1",
"@tsed/logger": "^6.6.3",
"@tsed/logger-file": "^6.6.3",
"@tsed/openspec": "^7.44.1",
"@tsed/platform-cache": "^7.44.1",
"@tsed/platform-exceptions": "^7.44.1",
"@tsed/platform-express": "^7.44.1",
"@tsed/platform-log-middleware": "^7.44.1",
"@tsed/platform-middlewares": "^7.44.1",
"@tsed/platform-params": "^7.44.1",
"@tsed/platform-response-filter": "^7.44.1",
"@tsed/platform-views": "^7.44.1",
"@tsed/schema": "^7.44.1",
"@tsed/swagger": "^7.44.1",
"ajv": "^8.12.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.3.1",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^4.0.1",
"express": "^4.18.2",
"method-override": "^3.0.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/method-override": "^0.0.35",
"@types/multer": "^1.4.10",
"@types/node": "^20.9.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "npm"
}
}