-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.23 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
{
"name": "middlifier",
"version": "1.0.185",
"description": "Middlifier provides a command where you can give instructions to build a general backend and middleware template.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"start": "bun ./src/init.ts",
"w-delete": "rmdir /s /q dist gen",
"delete": "rm -rf dist gen",
"publishLib": "bun ./publish.ts"
},
"keywords": [],
"author": "ebaerwald",
"license": "ISC",
"bin": {
"middlifier-init": "dist/init.js",
"middlifier-end": "dist/end.js"
},
"devDependencies": {
"@tsconfig/node-lts": "^18.12.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/pg-pool": "^2.0.6",
"@types/prompt-sync": "^4.2.3",
"drizzle-kit": "^0.20.18",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"bun-types": "^1.1.18",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"drizzle-orm": "^0.30.10",
"express": "^4.19.2",
"fs": "^0.0.1-security",
"middlifier": "^1.0.185",
"mongoose": "^8.4.5",
"nodemon": "^3.1.4",
"pg-pool": "^3.6.2",
"prompt-sync": "^4.2.0",
"zod": "^3.23.8"
}
}