-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
78 lines (78 loc) · 2.5 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
{
"name": "unified-instantsearch-ecommerce",
"version": "0.1.0-beta.5",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack/dev.babel.js",
"export": "NODE_ENV=production webpack --config webpack/build.babel.js",
"preview": "NODE_ENV=production webpack --config webpack/preview.babel.js",
"lint": "run-p -c lint:*",
"lint:js": "eslint --ext .js src",
"lint:css": "stylelint '**/*.(s)css'",
"release": "shipjs prepare"
},
"dependencies": {
"algoliasearch": "4.12.2",
"invariant": "2.2.4",
"preact": "10.6.6",
"qs": "6.10.3",
"react-instantsearch-dom": "6.22.0",
"react-router-dom": "6.2.2",
"rheostat": "2.2.0",
"search-insights": "1.4.0"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/eslint-parser": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/register": "7.17.0",
"babel-loader": "8.2.3",
"babel-plugin-strip-invariant": "1.0.0",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.6.0",
"css-minimizer-webpack-plugin": "3.4.1",
"eslint": "8.10.0",
"eslint-config-algolia": "20.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-jsdoc": "37.9.6",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.2",
"eslint-plugin-react-hooks": "4.3.0",
"html-webpack-plugin": "5.5.0",
"ignore-styles": "5.0.1",
"mini-css-extract-plugin": "2.5.3",
"module-alias": "2.2.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.7",
"postcss-inject-css-variables": "0.0.2",
"postcss-loader": "6.2.1",
"postcss-preset-env": "7.4.2",
"prettier": "2.5.1",
"sass": "1.49.9",
"sass-loader": "12.6.0",
"shipjs": "0.24.3",
"style-loader": "3.3.1",
"stylelint": "14.5.3",
"stylelint-a11y": "1.2.3",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "25.0.0",
"stylelint-no-unsupported-browser-features": "5.0.3",
"stylelint-order": "5.0.0",
"stylelint-prettier": "2.0.0",
"terser-webpack-plugin": "5.3.1",
"webpack": "5.69.1",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4",
"webpack-merge": "5.8.0"
},
"_moduleAliases": {
"react": "node_modules/preact/compat"
}
}