forked from prisma-labs/graphql-framework-experiment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.73 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"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",
"module": "dist-esm/index.js",
"files": [
"/dist",
"/dist-esm",
"/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",
"typescript-language-service/index.d.ts",
"typescript-language-service/index.js"
],
"bin": {
"nexus": "dist/cli/main.js"
},
"dependencies": {
"@nexus/logger": "^0.2.0",
"@nexus/schema": "^0.15.0",
"@types/express": "^4.17.7",
"@types/node-fetch": "^2.5.5",
"@types/prompts": "^2.0.3",
"@zeit/node-file-trace": "^0.8.2",
"anymatch": "^3.1.1",
"apollo-server-express": "^2.16.0",
"arg": "^4.1.3",
"chalk": "^4.0.0",
"chokidar": "^3.3.0",
"clean-stack": "^3.0.0",
"common-tags": "^1.8.0",
"content-type": "^1.0.4",
"cross-fetch": "^3.0.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-glob": "^3.2.4",
"fp-ts": "^2.5.4",
"fs-jetpack": "^2.4.0",
"get-port": "^5.1.0",
"graphql": "^14.5.8",
"graphql-request": "^3.0.0",
"graphql-scalars": "^1.1.5",
"http-errors": "^1.7.3",
"lodash": "^4.17.19",
"node-fetch": "^2.6.0",
"parse-json": "^5.0.0",
"pirates": "^4.0.1",
"prismjs": "^1.20.0",
"prompts": "^2.3.0",
"rxjs": "^6.5.4",
"simple-git": "^2.0.0",
"slash": "^3.0.0",
"source-map-support": "^0.5.19",
"stacktrace-parser": "^0.1.10",
"strip-ansi": "^6.0.0",
"ts-morph": "^7.1.3",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"type-fest": "^0.16.0",
"typescript": "3.9.x"
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@types/anymatch": "1.3.1",
"@types/common-tags": "1.8.0",
"@types/content-type": "1.1.3",
"@types/http-errors": "1.6.3",
"@types/jest": "26.0.8",
"@types/lodash": "4.14.152",
"@types/node": "13.13.9",
"@types/parse-json": "^4.0.0",
"@types/prismjs": "^1.16.1",
"@types/source-map-support": "^0.5.2",
"@types/which": "^1.3.2",
"cross-env": "^7.0.2",
"doctoc": "1.4.0",
"dripip": "0.9.0",
"jest": "26.0.1",
"jest-extended": "^0.11.5",
"nock": "^12.0.3",
"node-pty": "0.9.0",
"prettier": "2.0.5",
"ts-jest": "26.0.0",
"which": "^2.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
]
},
"scripts": {
"dev:docs": "docsify serve docs",
"docs:dev": "docsify serve docs",
"docs:readme:build": "doctoc README.md --notitle --maxlevel 3",
"docs:deploy": "vercel --prod",
"docs:deploy:preview": "vercel",
"release:stable": "dripip stable",
"release:preview": "dripip preview",
"release:pr": "dripip pr",
"format": "prettier --write '.'",
"build": "yarn clean && node scripts/build-module-facades && tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json",
"clean": "git clean -fX && rm -rf dist* && rm -rf typescript-language-service",
"postpublish": "yarn clean",
"postinstall": "node scripts/postinstall",
"prepublishOnly": "yarn build",
"test": "cross-env FORCE_COLOR=3 LOG_PRETTY=true DEBUG=true jest --verbose --testTimeout 1200000 --forceExit",
"test:unit": "yarn test src",
"dev:test": "yarn test --watch src",
"dev": "yarn clean && node scripts/build-module-facades && tsc -b tsconfig.cjs.json -w"
}
}