forked from apollographql/react-apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.28 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "apollo-react-monorepo",
"version": "4.0.0",
"private": true,
"author": "[email protected]",
"license": "MIT",
"scripts": {
"postinstall": "npx lerna exec -- npm install --package-lock=false && npx lerna run prepare",
"build": "npx lerna run build",
"test": "npx jest --config ./config/jest.config.js --silent",
"test:watch": "npx jest --config ./config/jest.config.js --watch",
"test:coverage": "npx jest --config ./config/jest.config.js --verbose --coverage",
"test:ci": "npm run test:coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit --silent",
"test:cjs": "npm run build && npx jest --config ./config/jest.cjs.config.js",
"test:cjs:ci": "npx jest --config ./config/jest.cjs.config.js --ci --maxWorkers=2 --reporters=default --reporters=jest-junit --silent",
"bundlesize": "npx lerna run build && bundlesize",
"prettier": "npx prettier --config ./config/prettier.config.js --write \"./**/*.{js,jsx,ts*,md,graphql,json}\"",
"deploy": "npx lerna publish --dist-tag beta",
"clean": "rm -Rf ./node_modules ./meta && npx lerna exec -- npm run clean"
},
"dependencies": {
"react-apollo": "file:./packages/all",
"@apollo/react-common": "file:./packages/common",
"@apollo/react-components": "file:./packages/components",
"@apollo/react-hoc": "file:./packages/hoc",
"@apollo/react-hooks": "file:./packages/hooks",
"@apollo/react-ssr": "file:./packages/ssr",
"@apollo/react-testing": "file:./packages/testing"
},
"devDependencies": {
"@apollo/client": "3.0.0-james.33.0",
"@babel/core": "7.8.7",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@testing-library/react": "9.5.0",
"@types/fast-json-stable-stringify": "2.0.0",
"@types/graphql": "14.5.0",
"@types/hoist-non-react-statics": "3.3.1",
"@types/invariant": "2.2.31",
"@types/jest": "24.9.0",
"@types/prop-types": "15.7.3",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/recompose": "0.30.7",
"@types/zen-observable": "0.8.0",
"bundlesize": "0.18.0",
"graphql": "14.6.0",
"graphql-tag": "2.10.3",
"jest": "^24.9.0",
"jest-junit": "10.0.0",
"lerna": "3.20.2",
"prop-types": "^15.7.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"recompose": "0.30.0",
"rollup": "1.32.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-invariant": "0.5.6",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.3.0",
"rollup-plugin-typescript2": "0.26.0",
"ts-jest": "24.3.0",
"tsc-watch": "4.2.3",
"typescript": "3.8.3",
"zen-observable-ts": "0.8.20"
},
"bundlesize": [
{
"name": "react-apollo",
"path": "./packages/all/lib/react-apollo.cjs.min.js",
"maxSize": "405B"
},
{
"name": "@apollo/react-components",
"path": "./packages/components/lib/react-components.cjs.min.js",
"maxSize": "700B"
},
{
"name": "@apollo/react-hoc",
"path": "./packages/hoc/lib/react-hoc.cjs.min.js",
"maxSize": "1.58 kB"
},
{
"name": "@apollo/react-ssr",
"path": "./packages/ssr/lib/react-ssr.cjs.min.js",
"maxSize": "430B"
}
],
"renovate": {
"extends": [
"apollo-open-source"
],
"automerge": false
}
}