forked from algolia/unified-instantsearch-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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
{
"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 .",
"lint:css": "stylelint '**/*.(s)css'",
"release": "shipjs prepare"
},
"dependencies": {
"algoliasearch": "4.1.0",
"invariant": "2.2.4",
"preact": "10.4.0",
"qs": "6.9.3",
"react-instantsearch-dom": "6.4.0",
"react-router-dom": "5.1.2",
"rheostat": "2.2.0",
"search-insights": "1.4.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/register": "7.9.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-strip-invariant": "1.0.0",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.5.2",
"eslint": "6.8.0",
"eslint-config-algolia": "15.0.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"html-webpack-plugin": "4.3.0",
"ignore-styles": "5.0.1",
"mini-css-extract-plugin": "0.9.0",
"module-alias": "2.2.2",
"node-sass": "4.13.1",
"npm-run-all": "4.1.5",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss": "7.0.27",
"postcss-inject-css-variables": "0.0.2",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.0.4",
"sass-loader": "8.0.2",
"shipjs": "0.21.0",
"style-loader": "1.2.1",
"stylelint": "13.3.2",
"stylelint-a11y": "1.2.3",
"stylelint-config-prettier": "8.0.1",
"stylelint-config-sass-guidelines": "7.0.0",
"stylelint-config-standard": "20.0.0",
"stylelint-no-unsupported-browser-features": "4.0.0",
"stylelint-order": "4.0.0",
"stylelint-prettier": "1.1.2",
"terser-webpack-plugin": "2.3.6",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2"
},
"_moduleAliases": {
"react": "node_modules/preact/compat"
}
}