forked from thisoverride/hotspring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 KB
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
{
"name": "hotspring",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"devv": "node ./build/main/Main.js",
"dev": "tsx watch --env-file=.env ./src/.bin/handler.ts",
"prod": "node build/main.js",
"build": "tsc -b -diagnostics ",
"test": "jest"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/inversify": "^2.0.33",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.14",
"@types/validator": "^13.12.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.3",
"typescript": "^5.4.5"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"helmet": "^6.1.0",
"inversify": "^6.0.2",
"morgan": "^1.10.0",
"reflect-metadata": "^0.2.2",
"winston": "^3.17.0"
}
}