-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
{
"name": "web",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"web-dev": "vite web --port 3000",
"web-build": "vite build web",
"web-preview": "vite preview web",
"web-type-check": "vue-tsc --build ./web --force",
"server-dev": "go run ./server --format pretty --port 3001 --host localhost --cdn-url http://localhost:3002",
"server-build": "go build -o dist/server/server ./server",
"minioserve-dev": "go run ./minioserve --format pretty --port 3002 --host localhost",
"minioserve-build": "go build -o dist/minioserve/minioserve ./minioserve",
"database-clean": "rimraf dist/database",
"database-build": "npx tsc -p database",
"database-start": "node dist/database/migration.js",
"database-dev": "npm run database-clean && npm run database-build && npm run database-start",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts"
},
"dependencies": {
"@auth0/auth0-vue": "^2.3.3",
"@primevue/themes": "^4.1.1",
"@vueuse/core": "^11.0.3",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"pinia": "^2.1.7",
"postgres": "^3.4.4",
"primevue": "^4.0.5",
"rimraf": "^6.0.1",
"vue": "^3.5.5",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@tsconfig/node20": "^20.1.4",
"@types/eslint": "^9.6.1",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.28.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.2.5",
"sass-embedded": "^1.78.0",
"typescript": "~5.5.4",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.3",
"vite-plugin-vue-devtools": "^7.4.5",
"vue-tsc": "^2.1.6"
}
}