-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
46
47
{
"name": "@zenstackhq/proxy",
"version": "0.2.1",
"description": "A CLI tool to run an Express server that proxies CRUD requests to a ZenStack backend",
"main": "index.js",
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"repository": {
"type": "git",
"url": "https://github.com/zenstackhq/proxy"
},
"bin": {
"zenstack-proxy": "./bin/cli.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && tsc && copyfiles -F \"bin/*\" dist && copyfiles ./README.md ./LICENSE ./package.json dist && pnpm pack dist --pack-destination ../build"
},
"keywords": ["zenstack", "proxy", "express", "cli"],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/adapter-better-sqlite3": "^6.2.1",
"@prisma/adapter-mariadb": "^7.1.0",
"@prisma/adapter-pg": "^7.2.0",
"@zenstackhq/server": "^2.0.0",
"colors": "^1.4.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.19.2",
"mixpanel": "^0.19.1",
"semver": "^7.7.3",
"tsx": "^4.20.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^20.0.0",
"@types/semver": "^7.7.1",
"copyfiles": "^2.4.1",
"rimraf": "^4.0.0",
"typescript": "^5.0.0"
}
}