-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
32 lines (32 loc) · 1010 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
32
{
"name": "graphql-codegen-persisted-query-ids",
"version": "0.2.0",
"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",
"dev": "npm run build && graphql-codegen --config ./dev/codegen.yml"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"jest": "^29.6.1",
"prettier": "^2.0.4",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@graphql-tools/apollo-engine-loader": "^8.0.0",
"graphql": "^16.7.1"
},
"files": [
"lib"
]
}