-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.31 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
83
84
85
86
87
{
"name": "nexus-plugin-prisma",
"version": "0.0.0-dripip",
"license": "MIT",
"author": "Jason Kuhrt",
"main": "dist/index.js",
"module": "dist/mylib.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"scripts",
"global-type.d.ts"
],
"scripts": {
"dev": "tsc --watch",
"build": "yarn clean && node scripts/update-hash.js && tsc",
"build:ci": "tsc",
"test": "jest",
"test:e2e:mysql": "yarn test test/e2e/mysql.test.ts --testTimeout=400000",
"test:e2e:postgres": "yarn test test/e2e/postgres.test.ts --testTimeout=400000",
"test:e2e:sqlite": "yarn test test/e2e/sqlite.test.ts --testTimeout=400000",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"release:stable": "dripip stable",
"release:preview": "dripip preview",
"release:pr": "dripip pr",
"prepack": "yarn -s build",
"postinstall": "node ./scripts/postinstall.js"
},
"peerDependencies": {
"nexus-future": "^0.13.0-next",
"@prisma/cli": "2.0.0-preview025"
},
"dependencies": {
"@nexus/schema": "^0.12.0-rc.13",
"@prisma/client": "2.0.0-preview025",
"@prisma/sdk": "2.0.0-preview025",
"chalk": "^3.0.0",
"common-tags": "^1.8.0",
"fs-jetpack": "^2.2.3",
"graphql": "^14.6.0",
"nexus": "^0.12.0-rc.13",
"nexus-prisma": "^0.11.1",
"prismjs": "^1.19.0",
"stacktrace-parser": "^0.1.9"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@types/common-tags": "1.8.0",
"@types/jest": "25.1.4",
"@types/prismjs": "1.16.0",
"dripip": "0.8.0",
"husky": "4.2.3",
"jest": "^25.2.2",
"jest-watch-typeahead": "^0.4.2",
"nexus-future": "^0.13.0-next.6",
"node-fetch": "2.6.0",
"node-pty": "0.9.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"ts-jest": "^25.2.1",
"tslib": "1.11.1",
"typescript": "3.8.3"
},
"prisma": {
"version": "8814060fa684793b73d07dbfccd4b7777b3361ae"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.ts'"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}