forked from apollographql/react-apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.87 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "apollo-react-monorepo",
"version": "3.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",
"test:umd": "npm run build && npx jest --config ./config/jest.umd.config.js",
"test:umd:ci": "npx jest --config ./config/jest.umd.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",
"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": {
"@babel/core": "7.5.5",
"@babel/plugin-transform-modules-commonjs": "7.5.0",
"@babel/plugin-transform-modules-umd": "7.2.0",
"@testing-library/react": "8.0.9",
"@types/fast-json-stable-stringify": "2.0.0",
"@types/graphql": "14.2.3",
"@types/hoist-non-react-statics": "3.3.1",
"@types/invariant": "2.2.30",
"@types/jest": "24.0.17",
"@types/prop-types": "15.7.1",
"@types/react": "16.8.24",
"@types/react-dom": "16.8.5",
"@types/recompose": "0.30.6",
"@types/zen-observable": "0.8.0",
"apollo-cache": "1.3.2",
"apollo-cache-inmemory": "1.6.3",
"apollo-client": "2.6.4",
"apollo-link": "1.2.12",
"bundlesize": "0.18.0",
"graphql": "14.4.2",
"graphql-tag": "2.10.1",
"jest": "24.8.0",
"jest-junit": "7.0.0",
"lerna": "3.16.4",
"react": "16.9.0-alpha.0",
"react-dom": "16.9.0-alpha.0",
"recompose": "0.30.0",
"rollup": "1.19.4",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-invariant": "0.5.2",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.1",
"rollup-plugin-typescript2": "0.22.1",
"ts-jest": "24.0.2",
"tsc-watch": "2.4.0",
"typescript": "3.5.3",
"zen-observable-ts": "0.8.19"
},
"bundlesize": [
{
"name": "react-apollo",
"path": "./packages/all/lib/react-apollo.cjs.min.js",
"maxSize": "380B"
},
{
"name": "@apollo/react-common",
"path": "./packages/common/lib/react-common.cjs.min.js",
"maxSize": "750B"
},
{
"name": "@apollo/react-components",
"path": "./packages/components/lib/react-components.cjs.min.js",
"maxSize": "680B"
},
{
"name": "@apollo/react-hoc",
"path": "./packages/hoc/lib/react-hoc.cjs.min.js",
"maxSize": "1.55 kB"
},
{
"name": "@apollo/react-hooks",
"path": "./packages/hooks/lib/react-hooks.cjs.min.js",
"maxSize": "3.93 kB"
},
{
"name": "@apollo/react-ssr",
"path": "./packages/ssr/lib/react-ssr.cjs.min.js",
"maxSize": "440B"
}
],
"renovate": {
"extends": [
"apollo-open-source"
],
"automerge": false
}
}