-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "@deep-foundation/react-hasura",
"version": "0.0.29",
"license": "Unlicense",
"author": "Ivan S Glazunov <[email protected]>",
"homepage": "https://github.com/deep-foundation/react-hasura",
"repository": {
"type": "git",
"url": "ssh://[email protected]/deep-foundation/react-hasura.git"
},
"description": "",
"dependencies": {
"debug": "^4.3.1"
},
"devDependencies": {
"@types/debug": "^4.1.9",
"@types/node": "^14.0.23",
"@types/react": "^18.2.15",
"pre-commit": "^1.2.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "*",
"@deep-foundation/hasura": "0.0.x",
"@apollo/react-hooks": "^4.0.0",
"@apollo/client": "^3.7.9"
},
"scripts": {
"package:refresh": "rm -rf node_modules; rm -f package-lock.json; npm i",
"package:build": "tsc --project tsconfig.json",
"package:unbuild": "rm -f ./*.js; rm -f ./*.js.map; rm -f ./*.d.ts",
"package:publish": "npm run package:build; npm publish --access public; npm run package:unbuild",
"package:release": "npm version patch && git push"
}
}