-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
31 lines (31 loc) · 913 Bytes
/
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
{
"name": "graphql-codegen-persisted-query-ids",
"version": "0.1.2",
"description": "Generate persisted query ids",
"main": "lib/index.js",
"repository": {
"url": "https://github.com/epeli/graphql-codegen-persisted-query-ids"
},
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.build.json && rm -rf lib && mv build/src lib && rm -rf build",
"clean": "rm -rf lib build",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"jest": "^25.2.7",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^1.13.2",
"graphql": "^14.0.0"
},
"files": [
"lib"
]
}