-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
executable file
·99 lines (99 loc) · 3.32 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
{
"name": "metaflow-ui",
"version": "1.3.13",
"private": true,
"dependencies": {
"@rehooks/component-size": "^1.0.3",
"copy-to-clipboard": "^3.3.1",
"i18next": "^22.4.15",
"idb": "^7.1.1",
"markdown-to-jsx": "^7.2.0",
"msw": "^2.7.0",
"polished": "^4.2.2",
"query-string": "^6.13.1",
"react": "^18.2.0",
"react-custom-scrollbars-2": "^4.4.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.2",
"react-router-dom": "^5.2.0",
"react-tooltip": "^4.2.17",
"react-virtualized": "^9.22.5",
"reconnecting-websocket": "^4.4.0",
"spacetime": "^7.4.7",
"styled-components": "^5.3.10",
"use-debounce": "^9.0.4",
"use-is-in-viewport": "^1.0.9",
"use-query-params": "1.1.6",
"uuid": "^9.0.0"
},
"scripts": {
"start": "cross-env DISABLE_NEW_JSX_TRANSFORM=true react-scripts start",
"start-with-mocks": "cross-env DISABLE_NEW_JSX_TRANSFORM=true REACT_APP_ENABLE_MOCKS=true react-scripts start",
"build": "cross-env DISABLE_NEW_JSX_TRANSFORM=true react-scripts build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "cypress open --component",
"test:ci": "cypress run --component --config watchForFileChanges=false",
"test:pluginapi": "cypress open --component --config-file ./cypress.plugin-api.config.ts",
"test:pluginapi:ci": "cypress run --component --config-file ./cypress.plugin-api.config.ts",
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"eject": "react-scripts eject",
"format": "prettier --write src",
"dev:plugin": "concurrently --kill-others --names \"PLUGIN-SERVE,DEV\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm:dev-plugin-serve\" \"npm:dev-plugin-cypress\"",
"dev-plugin-serve": "serve ./plugin-api -p 5000",
"dev-plugin-cypress": "cypress open --component --config-file ./cypress.plugin-dev.config.ts",
"init-mocks": "msw init ./public --save"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@cypress/react": "^8.0.0",
"@types/node": "^20.12.7",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.3",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.21.21",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.2",
"@typescript-eslint/parser": "^5.6.2",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"cypress": "^13.8.1",
"cypress-wait-until": "^3.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"http-proxy-middleware": "^3.0.0",
"mock-websocket": "^0.0.7",
"prettier": "^3.2.5",
"react-scripts": "^5.0.1",
"serve": "^14.2.0",
"setimmediate": "^1.0.5",
"typescript": "^5.0.4"
},
"resolutions": {
"@types/react": "^18.0.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}