-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
{
"private": false,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"pack": "lerna run pack",
"test": "lerna run test",
"format": "lerna run format",
"lint": "lerna run lint",
"publish": "lerna publish from-package --ignore-prepublish --no-git-reset --yes"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@rollup/plugin-url": "^5.0.1",
"@svgr/rollup": "^5.5.0",
"@testing-library/react": "^11.1.2",
"@testing-library/react-hooks": "~3.4.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/object-hash": "^1.3.4",
"@types/qs": "~6.9.5",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"axios": "^0.21.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-formatter-pretty": "~4.0.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "~15.3.0",
"graphql-request": "~3.4.0",
"husky": "~4.3.0",
"isomorphic-fetch": "~3.0.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"prettier": "~2.1.2",
"prettier-check": "~2.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-query": "~3.16.0",
"react-test-renderer": "^17.0.1",
"rimraf": "~3.0.2",
"rollup": "^2.33.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5"
},
"workspaces": [
"packages/*"
],
"keywords": [
"typescript",
"moon-client",
"queries",
"mutations",
"react-query",
"moon"
],
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run lint"
}
}
}