forked from graphql-nexus/nexus-plugin-prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "nexus-prisma",
"version": "0.6.2-next.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Flavian Desverne <desverne@prisma.io>",
"files": [
"dist",
"src"
],
"scripts": {
"publish:pr": "yarn publish --tag pr.${PR} --no-git-tag-version --new-version \"0.0.0-pr.${PR}.$(git show -s head --format='%h')\"",
"clean": "rm -rf dist",
"build": "yarn -s clean && tsc",
"build:doc": "doctoc README.md && prettier --write README.md",
"dev": "tsc --watch",
"dev:test": "jest --watch",
"prepublishOnly": "yarn -s build",
"style": "prettier --write 'src/**/*.ts' 'test/**/*.ts' 'example/**/*.ts'",
"test": "ts-node tests/__ensure-engine.ts && jest"
},
"dependencies": {
"camelcase": "^5.3.1",
"fs-extra": "^8.1.0",
"nexus": "^0.12.0-rc.4",
"pluralize": "^8.0.0"
},
"peerDependencies": {
"@prisma/photon": "^2.0.0-alpha.351",
"graphql": "^14.5.0"
},
"devDependencies": {
"@prisma/fetch-engine": "^0.3.30",
"@prisma/photon": "^2.0.0-alpha.351",
"@types/fs-extra": "^8.0.0",
"@types/graphql": "^14.2.3",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/pluralize": "^0.0.29",
"@types/tmp": "^0.1.0",
"doctoc": "^1.4.0",
"graphql": "^14.5.4",
"jest": "^24.9.0",
"jest-watch-typeahead": "^0.4.0",
"prettier": "^1.17.1",
"prisma2": "^2.0.0-alpha.351",
"strip-ansi": "^6.0.0",
"tmp": "^0.1.0",
"ts-jest": "^24.0.2",
"ts-morph": "^5.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}