-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 2.41 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 2.41 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
{
"name": "universal-fullstack-framework",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.18.0",
"npm": ">=8.19.0"
},
"scripts": {
"dev": "vite --host 0.0.0.0",
"dev:local": "vite",
"dev:https": "VITE_HTTPS=true vite --host 0.0.0.0",
"dev:http": "vite --host 0.0.0.0",
"backend:dev": "lsof -ti:8000 | xargs kill -9 2>/dev/null || true && APP_PG_HOST=${APP_PG_HOST:-127.0.0.1} APP_PG_PORT=${APP_PG_PORT:-5432} APP_PG_DATABASE=${APP_PG_DATABASE:-app_local} APP_PG_USER=${APP_PG_USER:-$USER} APP_PG_PASSWORD=${APP_PG_PASSWORD:-} backend/.venv/bin/python backend/main.py",
"backend:dev:pg": "lsof -ti:8000 | xargs kill -9 2>/dev/null || true && APP_PG_HOST=${APP_PG_HOST:-127.0.0.1} APP_PG_PORT=${APP_PG_PORT:-5432} APP_PG_DATABASE=${APP_PG_DATABASE:-app_local} APP_PG_USER=${APP_PG_USER:-$USER} APP_PG_PASSWORD=${APP_PG_PASSWORD:-} backend/.venv/bin/python backend/main.py",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview --host 0.0.0.0",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"axios": "^1.9.0",
"chart.js": "^4.4.1",
"crypto-js": "^4.2.0",
"echarts": "^5.4.3",
"element-plus": "^2.4.4",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"pinia": "^2.1.7",
"starfish-editor": "^1.1.23",
"starfish-form": "^1.2.12",
"uuid": "^11.1.0",
"vue": "^3.3.13",
"vue-chartjs": "^5.3.0",
"vue-router": "^4.2.5",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/crypto-js": "^4.2.2",
"@types/file-saver": "^2.0.7",
"@types/jsdom": "^21.1.6",
"@types/node": "^22.15.21",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/eslint-plugin": "^1.6.9",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.39.3",
"eslint-plugin-vue": "^9.19.2",
"jiti": "^2.6.1",
"jsdom": "^23.0.1",
"npm-run-all2": "^6.1.1",
"prettier": "^3.1.1",
"sass": "^1.97.3",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-vue-devtools": "^7.7.6",
"vitest": "^3.1.4",
"vue-tsc": "^2.2.10"
}
}