forked from jphillipsCrestron/ch5-react-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.88 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
{
"name": "casa-bz",
"private": true,
"version": "3.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode development",
"build:prod": "tsc && vite build --mode production",
"archive": "ch5-cli archive -p casa-bz -d dist -o archive",
"deploy:mobile": "ch5-cli deploy -H 192.168.179.5 -t mobile archive/casa-bz.ch5z",
"deploy:xpanel": "ch5-cli deploy -H 192.168.179.5 -t web archive/casa-bz.ch5z",
"deploy:panel1": "ch5-cli deploy -H 192.168.179.12 -t touchscreen archive/casa-bz.ch5z --slow-mode",
"deploy:panel2": "ch5-cli deploy -H 192.168.179.13 -t touchscreen archive/casa-bz.ch5z --slow-mode",
"deploy:panel3": "ch5-cli deploy -H 192.168.179.14 -t touchscreen archive/casa-bz.ch5z --slow-mode",
"tutto": "npm run build:prod && npm run archive && npm run deploy:xpanel && npm run deploy:panel1 && npm run deploy:panel2 && npm run deploy:panel3",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@crestron/ch5-crcomlib": "2.8.0",
"@crestron/ch5-webxpanel": "2.8.0",
"antd": "^5.15.4",
"eruda": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@crestron/ch5-shell-utilities-cli": "^2.8.0",
"@crestron/ch5-utilities-cli": "^2.0.0",
"@types/node": "^20.11.19",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"dotenv-cli": "^7.4.1",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-singlefile": "^0.13.5",
"vite-plugin-static-copy": "^1.0.1"
}
}