-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 905 Bytes
/
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
{
"name": "prisma-local-proxy",
"description": "For testing Prisma Edge Client with a local database under local development",
"repository": "github:andyjy/prisma-local-proxy",
"author": "Andy Young",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"lint": "TIMING=1 eslint --cache .",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit",
"test": "# no tests yet # jest --config jest.config.js --rootDir ."
},
"type": "module",
"files": [
"client.ts",
"server.ts",
"shared.ts"
],
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"sql-template-tag": "^5.0.3"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/ungap__structured-clone": "^0.3.0",
"next": "^12.0.0 || ^13.0.0"
},
"peerDependencies": {
"@prisma/client": "*",
"prisma": "*"
},
"engines": {
"node": "^16.0.0 || ^18.0.0"
}
}