-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "template-server",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.ts",
"scripts": {
"build:tsc": "tsc",
"build:check": "tsc --noEmit",
"build:esbuild": "tsc --noEmit && node esbuild.config.js",
"build:binary": "tsc --noEmit && node esbuild.config.js && npx pkg -t node18-alpine-x64 --no-native-build --out-path dist-binary ./dist/index.js",
"dev": "nodemon -r dotenv/config -r tsconfig-paths/register src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@anatine/zod-openapi": "^2.2.5",
"axios": "^1.6.8",
"cors": "^2.8.5",
"cron": "^2.4.3",
"express": "^4.19.2",
"glob": "^10.3.12",
"helmet": "^7.1.0",
"ip": "^1.1.8",
"mime-types": "^2.1.35",
"nanoid": "^3.3.4",
"openapi3-ts": "^4.3.1",
"pg": "^8.11.4",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.1",
"sequelize": "^6.37.2",
"sequelize-cli": "^6.6.2",
"sequelize-typescript": "^2.1.6",
"uuid": "^9.0.1",
"winston": "^3.13.0",
"zod": "^3.23.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/ip": "^1.1.0",
"@types/mime-types": "^2.1.4",
"@types/node": "18.19.33",
"@types/pg": "^8.11.4",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.11.9",
"dotenv": "^16.4.5",
"esbuild": "^0.23.0",
"esbuild-plugin-tsc": "^0.4.0",
"esbuild-wasm": "^0.23.0",
"nodemon": "^2.0.22",
"pkg": "^5.8.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "4.9.5"
}
}