-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 999 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 999 Bytes
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
{
"name": "digital-auto-plugin-demo",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run build:plugin:watch\" \"vite\"",
"build:plugin": "bash src/plugin/build.sh",
"build:plugin:watch": "npm run build:plugin && chokidar \"src/plugin/**/*.ts\" \"src/plugin/**/*.tsx\" -c \"npm run build:plugin\"",
"build": "npm run build:plugin && vite build",
"check": "tsc"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wouter": "^3.3.5"
},
"devDependencies": {
"@replit/vite-plugin-cartographer": "^0.4.1",
"@replit/vite-plugin-dev-banner": "^0.1.1",
"@replit/vite-plugin-runtime-error-modal": "^0.0.3",
"@types/node": "20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.7.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"esbuild": "^0.25.0",
"typescript": "5.6.3",
"vite": "^5.4.20"
}
}