-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "expresstype.v2",
"private": false,
"version": "2.0.1",
"description": "express typescript package v2",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "bunx --bun tsc",
"start": "node build/index.js",
"dev": "bun run ./script.js",
"tsc-watch": "bunx --bun tsc --watch",
"build-watch": "bun run --watch build/index.js",
"test": "bun test"
},
"keywords": [
"express",
"typescript",
"types",
"expresstype",
"creative-tutorials"
],
"author": "creative-tutorials",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.45.0",
"@t3-oss/env-core": "^0.11.0",
"@types/express-serve-static-core": "^4.19.5",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"mongodb": "^6.8.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/bun": "^1.1.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/qs": "^6.9.15",
"@types/uuid": "^10.0.0",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5"
},
"peerDependencies": {
"typescript": "^5.5.4"
}
}