forked from meilisearch/mini-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.64 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
{
"name": "mini-dashboard",
"version": "0.2.15",
"private": true,
"dependencies": {
"@meilisearch/instant-meilisearch": "^1.0.0",
"@styled-system/should-forward-prop": "^5.1.5",
"babel-loader": "9.1.3",
"color": "^4.2.3",
"eslint-plugin-import": "^2.29.1",
"meilisearch": "^0.38.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-instantsearch-dom": "^6.40.4",
"react-json-view": "^1.21.3",
"react-lazy-load-image-component": "^1.6.0",
"react-scripts": "5.0.1",
"reakit": "^1.3.11",
"styled-components": "^5.3.9",
"styled-system": "^5.1.5"
},
"scripts": {
"version-script": "node version-script.js",
"prestart": "yarn version-script",
"prebuild": "yarn version-script",
"start": "react-scripts start",
"start:ci": "REACT_APP_MEILI_SERVER_ADDRESS=http://meilisearch:7700 react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint .",
"prettier-check": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cy:open": "cypress open",
"cy:run:test-no-meilisearch": "cypress run --spec '**/*/test-no-meilisearch.cy.js'",
"cy:run:test-api-key-required": "cypress run --spec '**/*/test-api-key-required.cy.js,**/*/test-api-key-query-param.cy.js'",
"cy:run": "cypress run --config excludeSpecPattern=['**/*/test-no-meilisearch.cy.js','**/*/test-api-key-required.cy.js','**/*/test-api-key-query-param.cy.js']",
"icons": "npx @svgr/cli --title-prop --no-dimensions --replace-attr-values \"#39486E=currentColor,#959DB3=currentColor\" -d src/components/icons src/components/icons/svg"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@storybook/addon-actions": "^8.1.11",
"@storybook/addon-essentials": "^8.1.9",
"@storybook/addon-links": "^8.0.10",
"@storybook/node-logger": "^8.3.4",
"@storybook/preset-create-react-app": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/react-webpack5": "^8.1.9",
"@svgr/cli": "^8.1.0",
"cypress": "^13.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.37.0",
"prettier": "^3.3.3",
"storybook": "^8.3.4"
},
"resolutions": {
"**/recursive-readdir/**/minimatch": "^3.0.5",
"**/css-select/**/nth-check": "^2.1.1",
"**/react-scripts/**/semver": "^7.5.2",
"**/react-scripts/**/postcss": "^8.4.31"
}
}