-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
{
"name": "tsed840",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npm run barrels && swc src --out-dir dist -s --strip-leading-paths",
"barrels": "barrels",
"start": "npm run barrels && nodemon src/index.ts",
"start:prod": "cross-env NODE_ENV=production node --import @swc-node/register/esm-register src/index.js",
"typeorm": "typeorm-ts-node-commonjs"
},
"dependencies": {
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.4",
"@swc/helpers": "^0.5.15",
"@tsed/ajv": "^8.4.0",
"@tsed/barrels": "^6.1.5",
"@tsed/core": "^8.4.0",
"@tsed/di": "^8.4.0",
"@tsed/engines": "^8.4.0",
"@tsed/exceptions": "^8.4.0",
"@tsed/json-mapper": "^8.4.0",
"@tsed/logger": "^7.0.1",
"@tsed/openspec": "^8.4.0",
"@tsed/platform-cache": "^8.4.0",
"@tsed/platform-exceptions": "^8.4.0",
"@tsed/platform-express": "^8.4.0",
"@tsed/platform-http": "^8.4.0",
"@tsed/platform-log-request": "^8.4.0",
"@tsed/platform-middlewares": "^8.4.0",
"@tsed/platform-params": "^8.4.0",
"@tsed/platform-response-filter": "^8.4.0",
"@tsed/platform-views": "^8.4.0",
"@tsed/schema": "^8.4.0",
"ajv": "^8.17.1",
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"dotenv-flow": "^4.1.0",
"express": "^4.21.2",
"method-override": "^3.0.0",
"sqlite3": "^5.1.7",
"typescript": "^5.7.3"
},
"devDependencies": {
"@tsed/cli-plugin-typeorm": "6.1.5",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/method-override": "^3.0.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.5",
"nodemon": "^3.1.9",
"tslib": "^2.8.1",
"typeorm": "^0.3.20"
},
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "npm",
"runtime": "node"
},
"type": "module"
}