-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
66 lines (66 loc) · 1.77 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
60
61
62
63
64
65
66
{
"name": "prisma-data-proxy-alt",
"description": "This is a library to alternate and self-host the [Prisma Data Proxy (cloud.prisma.io)](https://www.prisma.io/docs/concepts/data-platform/data-proxy).",
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pdp": "dist/server.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/aiji42/prisma-data-proxy-alt",
"repository": {
"type": "git",
"url": "https://github.com/aiji42/prisma-data-proxy-alt"
},
"author": "Aiji Uejima <[email protected]> (https://twitter.com/aiji42_dev)",
"license": "MIT",
"scripts": {
"dev:server": "ts-node-dev src/server.ts",
"generate:pdp": "prisma generate --data-proxy",
"build": "tsc",
"semantic-release": "semantic-release",
"prepare": "husky install",
"prepack": "yarn build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@prisma/client": "^4.0.0",
"@tsconfig/node16": "^1.0.3",
"c8": "^7.11.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prisma": "^4.0.0",
"semantic-release": "^19.0.3",
"ts-node": "^10.8.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"vitest": "^0.17.0",
"zx": "^7.0.7"
},
"peerDependencies": {
"@prisma/client": ">=4.0.0"
},
"dependencies": {
"@prisma/sdk": "^4.0.0",
"apollo-server-express": "^3.8.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
}
}