-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
82 lines (82 loc) · 2.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nexus-plugin-prisma",
"version": "0.0.0-see-git-tags",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Flavian Desverne <[email protected]>",
"files": [
"dist",
"src",
"scripts",
"schema.js",
"schema.d.ts",
"typegen.js",
"typegen.d.ts"
],
"scripts": {
"release:preview": "dripip preview",
"release:stable": "dripip stable",
"release:pr": "dripip pr",
"clean": "rm -rf dist",
"build": "yarn clean && yarn build:deps-sync && yarn build:module-facades && tsc",
"build:deps-sync": "node scripts/ensure-deps-sync",
"build:module-facades": "node scripts/build-module-facades",
"build:ci": "tsc",
"dev": "yarn -s build:module-facades && tsc --watch",
"prepublishOnly": "yarn -s build",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
"postinstall": "node ./scripts/postinstall.js",
"test": "jest --testTimeout=10000 --forceExit",
"test:dev": "jest src tests/ --watch",
"upgrade-prisma-dev": "yarn add @prisma/cli@dev @prisma/client@dev @prisma/fetch-engine@dev @prisma/get-platform@dev @prisma/migrate@dev @prisma/sdk@dev"
},
"peerDependencies": {
"@prisma/client": "2.23.x",
"graphql": "^15.3.0",
"nexus": "^1.0.0"
},
"dependencies": {
"camelcase": "^6.2.0",
"endent": "^2.0.1",
"fs-jetpack": "^4.1.0",
"lodash": "^4.17.20",
"pluralize": "^8.0.0",
"semver": "^7.3.4"
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@prisma/client": "2.23.0",
"@prisma/fetch-engine": "2.23.0",
"@prisma/get-platform": "2.23.0",
"@prisma/migrate": "2.23.0",
"@prisma/sdk": "2.23.0",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.167",
"@types/node": "14.14.20",
"@types/node-fetch": "2.5.7",
"@types/pluralize": "0.0.29",
"@types/prettier": "2.1.6",
"@types/semver": "7.3.4",
"dripip": "0.10.0",
"execa": "^5.0.0",
"get-port": "5.1.1",
"graphql": "15.4.0",
"graphql-request": "3.4.0",
"graphql-scalars": "1.7.0",
"graphql-yoga": "1.18.3",
"jest": "26.6.3",
"jest-watch-typeahead": "0.6.1",
"nexus": "^1.0.0",
"node-fetch": "2.6.1",
"prettier": "2.2.1",
"prisma": "^2.18.0",
"strip-ansi": "6.0.0",
"ts-jest": "26.4.4",
"ts-morph": "9.1.0",
"ts-node": "9.1.1",
"tslib": "2.1.0",
"typescript": "4.1.3"
},
"prettier": "@prisma-labs/prettier-config"
}