-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.15 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
58
59
60
61
62
63
{
"name": "tomradius",
"version": "1.0.0",
"private": true,
"description": "",
"type": "module",
"scripts": {
"clean": "rm -r dist*/",
"dev": "npm run clean; run-p server:dev vue:dev",
"build": "npm run clean; run-s vue:build server:build",
"start": "npm run clean; run-s vue:build server:start",
"server:dev": "tsc --noEmit --incremental false && tsx ./src/index.ts",
"server:build": "tsc",
"server:start": "npm run server:build && node ./dist/src/index.js",
"vue:dev": "vite --config ./config/vite.config.js",
"vue:build": "run-s vue:type-check vue:build-only",
"vue:build-only": "vite build --config ./config/vite.config.js",
"vue:preview": "vite preview --config ./config/vite.config.js",
"vue:type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"vue:lint": "eslint src-vue --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --color",
"vue:lint-fix": "eslint src-vue --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --color --fix"
},
"author": "hmes98318",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.4",
"cookie": "^0.6.0",
"dotenv": "^16.4.5",
"element-plus": "^2.8.2",
"express": "^4.20.0",
"mysql2": "^3.11.1",
"pinia": "^2.2.2",
"vue": "^3.5.3",
"vue-chartjs": "^5.3.1",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/cookie": "^0.6.0",
"@types/express": "^4.17.21",
"@types/node": "^20.14.13",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"npm-run-all2": "^6.2.2",
"sass": "^1.77.8",
"tsx": "^4.19.0",
"typescript": "~5.4.5",
"vite": "^5.4.3",
"vue-tsc": "^2.1.6"
},
"engines": {
"node": "20.x"
},
"os": [
"linux"
]
}