forked from prisma-labs/graphql-framework-experiment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.87 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "nexus",
"author": "Prisma Labs",
"version": "0.0.0-dripip",
"homepage": "https://github.com/graphql-nexus/nexus",
"repository": "graphql-nexus/nexus",
"bugs": "https://github.com/graphql-nexus/nexus/issues",
"license": "MIT",
"main": "dist/index.js",
"files": [
"/dist",
"/scripts",
"README.md",
"yarn.lock",
"testing.d.ts",
"testing.js",
"plugin.d.ts",
"plugin.js",
"components/schema.d.ts",
"components/schema.js",
"components/logger.d.ts",
"components/logger.js"
],
"bin": {
"nexus": "dist/cli/main.js"
},
"dependencies": {
"@nexus/logger": "^0.1.0-next.1",
"@nexus/schema": "^0.14.0-next.1",
"@types/express": "^4.17.2",
"@types/node-fetch": "^2.5.5",
"@types/pino": "^5.15.5",
"@types/prompts": "^2.0.3",
"anymatch": "^3.1.1",
"arg": "^4.1.3",
"chalk": "^4.0.0",
"chokidar": "^3.3.0",
"codename": "^0.0.6",
"common-tags": "^1.8.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-jetpack": "^2.2.3",
"get-port": "^5.1.0",
"graphql": "^14.5.8",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"pino": "^5.15.0",
"pirates": "^4.0.1",
"prompts": "^2.3.0",
"rxjs": "^6.5.4",
"serialize-error": "^6.0.0",
"simple-git": "^1.126.0",
"strip-ansi": "^6.0.0",
"ts-morph": "^7.0.0",
"ts-node": "^8.9.0",
"tslib": "^1",
"type-fest": "^0.13.0",
"typescript": "^3.7.2"
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@types/anymatch": "1.3.1",
"@types/common-tags": "1.8.0",
"@types/jest": "25.2.1",
"@types/lodash": "4.14.150",
"@types/node": "13.13.4",
"docsify": "4.11.3",
"docsify-cli": "4.4.0",
"doctoc": "1.4.0",
"dripip": "0.9.0",
"jest": "25.5.2",
"node-pty": "0.9.0",
"prettier": "2.0.5",
"ts-jest": "25.4.0"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"dev:docs": "docsify serve docs",
"docs:dev": "docsify serve docs",
"docs:readme:build": "doctoc README.md --notitle --maxlevel 3",
"docs:deploy": "now --prod",
"release:stable": "dripip stable",
"release:preview": "dripip preview",
"release:pr": "dripip pr",
"format": "prettier --write '.'",
"build": "yarn -s clean && node scripts/build-module-facades && tsc -b",
"clean": "git clean -fX && rm -rf dist",
"postpublish": "yarn -s clean",
"postinstall": "node scripts/postinstall",
"prepublishOnly": "yarn -s build",
"test": "LOG_PRETTY=true DEBUG=true jest --verbose --testTimeout 360000",
"test:unit": "jest --verbose --testRegex '.+/src/.+\\.spec\\.ts$'",
"dev:test": "jest --watch --testRegex '.+/src/.+\\.spec\\.ts$'",
"dev": "yarn -s clean && node scripts/build-module-facades && tsc -b -w"
}
}