-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 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
{
"version": "0.1.0",
"packageManager": "yarn@4.7.0",
"workspaces": [
"packages/*"
],
"type": "module",
"private": true,
"name": "@map-manager/web",
"scripts": {
"start": "vite",
"dev": "concurrently \"yarn workspace @map-manager/core run watch\" \"vite\"",
"build": "yarn workspace @map-manager/core run build && GENERATE_SOURCEMAP=false vite build",
"preview": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@map-manager/app": "workspace:*",
"@map-manager/example-plugin": "workspace:*",
"@map-manager/image-view": "workspace:*",
"@map-manager/scatter-plot": "workspace:*",
"@map-manager/table": "workspace:*",
"@preact/signals-react": "^3.0.1",
"@tailwindcss/vite": "4.0.14",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rsuite": "^5.78.1",
"vite": "^6.2.1",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.6",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"tailwindcss": "^4.0.6",
"typescript": "^5.8.2",
"vite": "^6.1.0"
}
}