forked from algolia/react-instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
157 lines (157 loc) · 5.6 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"version": "5.4.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"docgen"
],
"scripts": {
"postinstall": "lerna run build:cjs --scope react-instantsearch-*",
"start": "yarn docs:start & yarn docs:storybook-start & wait",
"build": "lerna run build --scope react-*",
"watch": "lerna run watch --scope react-instantsearch-* --parallel",
"release": "./scripts/release.sh",
"lint": "eslint . && tslint --project .",
"lint:fix": "eslint . --fix && tslint --project . --fix",
"type-check": "tsc",
"type-check:watch": "yarn type-check --watch",
"test": "yarn jest",
"test:watch": "yarn jest --watch",
"test:e2e": "yarn test:regressions && yarn test:argos",
"test:examples": "./scripts/test:examples.sh",
"test:build": "yarn build && yarn test:size",
"test:regressions": "webpack --config integration/webpack.config.js && node integration/runTest.js",
"test:argos": "argos upload integration/screenshots --token $ARGOS_TOKEN || true",
"test:size": "bundlesize",
"docs:start": "cd docgen && yarn start",
"docs:build": "(cd docgen && yarn build) && yarn docs:storybook-build-production",
"docs:deploy-production": "NODE_ENV=production yarn docs:build && node scripts/gh-pages.js",
"docs:build-preview": "./scripts/docs:build-preview.sh",
"docs:deploy-preview": "NODE_ENV=production yarn docs:build-preview && rm -f preview.zip && zip -r -9 preview.zip docgen/docs-production/ && netlify deploy && rm preview.zip",
"docs:storybook-start": "start-storybook -p 6006 -c ./storybook -s ./storybook/public",
"docs:storybook-build-production": "build-storybook -s ./storybook/public -o docgen/docs-production/react-instantsearch/storybook -c ./storybook",
"docs:doctoc": "doctoc --maxlevel 1 README.md"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@storybook/addon-a11y": "4.1.11",
"@storybook/addon-actions": "4.1.11",
"@storybook/addon-knobs": "4.1.11",
"@storybook/addon-links": "4.1.11",
"@storybook/addon-options": "4.1.11",
"@storybook/addons": "4.1.11",
"@storybook/react": "4.1.11",
"@types/classnames": "^2.2.7",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^24.0.0",
"@types/prop-types": "^15.5.8",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-test-renderer": "^16.0.3",
"@types/storybook__addon-a11y": "^3.3.1",
"@types/storybook__addon-actions": "^3.4.1",
"@types/storybook__addon-knobs": "^4.0.0",
"@types/storybook__addon-links": "^3.3.3",
"@types/storybook__addon-options": "^4.0.0",
"@types/storybook__react": "^4.0.0",
"algoliasearch": "3.32.0",
"argos-cli": "0.0.9",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"babel-loader": "8.0.5",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-lodash": "3.3.4",
"bundlesize": "0.17.1",
"conventional-changelog-cli": "2.0.11",
"css-loader": "0.28.11",
"doctoc": "1.4.0",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.9.1",
"enzyme-to-json": "3.3.5",
"eslint": "5.13.0",
"eslint-config-algolia": "13.2.3",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.2.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"gh-pages": "2.0.1",
"glob": "7.1.3",
"instantsearch.css": "7.1.0",
"jest": "24.1.0",
"jest-watch-typeahead": "0.2.1",
"json": "9.0.6",
"lerna": "3.11.0",
"lodash.orderby": "4.6.0",
"mversion": "1.13.0",
"netlify-cli": "2.6.6",
"null-loader": "0.1.1",
"places.js": "1.15.5",
"prettier": "1.16.4",
"prop-types": "15.6.1",
"puppeteer": "1.11.0",
"react": "16.8.1",
"react-autosuggest": "9.4.3",
"react-dom": "16.8.1",
"react-instantsearch-dom": "5.4.0",
"react-instantsearch-dom-maps": "5.4.0",
"react-native": "0.58.4",
"react-test-renderer": "16.8.1",
"rheostat": "2.2.0",
"rollup": "1.1.2",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-filesize": "6.0.1",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-uglify": "6.0.2",
"style-loader": "0.23.1",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"tslint-react": "3.6.0",
"typescript": "3.3.3",
"webpack": "3.12.0"
},
"engines": {
"node": "8.15.0",
"yarn": "1.13.0"
},
"bundlesize": [
{
"path": "packages/react-instantsearch/dist/umd/Core.min.js",
"maxSize": "7.75 kB"
},
{
"path": "packages/react-instantsearch/dist/umd/Connectors.min.js",
"maxSize": "40 kB"
},
{
"path": "packages/react-instantsearch/dist/umd/Dom.min.js",
"maxSize": "63 kB"
},
{
"path": "packages/react-instantsearch-core/dist/umd/ReactInstantSearchCore.min.js",
"maxSize": "41 kB"
},
{
"path": "packages/react-instantsearch-dom/dist/umd/ReactInstantSearchDOM.min.js",
"maxSize": "63 kB"
},
{
"path": "packages/react-instantsearch-dom-maps/dist/umd/ReactInstantSearchDOMMaps.min.js",
"maxSize": "10.75 kB"
}
]
}