forked from meilisearch/mini-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.46 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
{
"name": "mini-dashboard",
"version": "0.2.13",
"private": true,
"dependencies": {
"@meilisearch/instant-meilisearch": "^1.0.0",
"@styled-system/should-forward-prop": "^5.1.5",
"babel-loader": "9.1.2",
"color": "^4.2.3",
"eslint-plugin-import": "^2.26.0",
"meilisearch": "^0.36.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-instantsearch-dom": "^6.40.4",
"react-json-view": "^1.21.3",
"react-lazy-load-image-component": "^1.5.6",
"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": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"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": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/node-logger": "^6.5.14",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.14",
"@svgr/cli": "^6.5.1",
"cypress": "^12.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"prettier": "^2.8.2"
}
}