-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 796 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 796 Bytes
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
{
"name": "graphql-codegen-webpack-plugin",
"version": "0.0.7",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Artem Zakharchenko",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"start": "tsc -w",
"clean": "rimraf ./lib",
"test": "jest",
"build": "yarn clean && tsc",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.5",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1"
},
"peerDependencies": {
"@graphql-codegen/core": "^1.0.0",
"webpack": "^5.0.0"
},
"dependencies": {
"outvariant": "^1.0.4"
}
}