forked from dekart-xyz/dekart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.3 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.3 KB
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
{
"name": "dekart",
"version": "0.19.4",
"private": true,
"dependencies": {
"@improbable-eng/grpc-web": "^0.15.0",
"@kepler.gl/actions": "^3.1.8",
"@kepler.gl/components": "^3.1.8",
"@kepler.gl/reducers": "^3.1.8",
"@testing-library/user-event": "^12.5.0",
"ace-builds": "^1.36.5",
"ajv": "^8.17.1",
"antd": "^4.9.4",
"assert": "^2.1.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"crypto-js": "^4.1.1",
"cypress": "^13.15.0",
"dekart-proto": "file:./proto",
"google-protobuf": "^3.14.0",
"immer": "^9.0.7",
"js-md5": "^0.8.3",
"luxon": "^1.25.0",
"pretty-bytes": "^5.5.0",
"re-resizable": "^6.9.11",
"react": "^17.0.2",
"react-ace": "^13.0.0",
"react-dom": "^17.0.2",
"react-error-overlay": "^6.0.9",
"react-markdown": "^8.0.7",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-virtualized": "^9.22.3",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"semver": "^7.3.5",
"styled-components": "^5.2.1",
"vite-plugin-top-level-await": "^1.5.0",
"vite-plugin-wasm": "^3.4.1",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "standard ./src/client ",
"postinstall": "make proto-copy-to-node"
},
"eslintConfig": {
"globals": {
"cy": true
},
"extends": [
"react-app",
"react-app/jest",
"plugin:cypress/recommended"
]
},
"browserslist": {
"production": [
">2.0%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^4.4.1",
"cypress-file-upload": "^5.0.8",
"eslint-plugin-cypress": "^2.12.1",
"jsdom": "^26.1.0",
"standard": "^17.0.0",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"overrides": {
"react-dev-utils": {
"immer": "$immer"
},
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.7",
"react-redux": "^7.1.3",
"styled-components": "^5.2.1"
}
}