-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "jand-web",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "node --enable-source-maps -r why-is-node-running/include dist-srv/index.js",
"build-start": "npm run build && npm run srv:start",
"build": "npm run app:build && tsc",
"srv:start": "tsc && node --enable-source-maps -r why-is-node-running/include dist-srv/index.js",
"app:dev": "vite",
"app:build": "vite build",
"app:preview": "vite preview --port 4173",
"update": "git pull && npm i && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@kyvg/vue3-notification": "^2.4.1",
"@types/battery-level": "^3.0.0",
"@types/express": "^4.17.14",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^3.1.0",
"ansi-to-html": "^0.7.2",
"battery-level": "^3.0.0",
"cors": "^2.8.5",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-history-api-fallback": "^2.2.1",
"jand-ipc": "^2.2.1",
"lodash-es": "^4.17.21",
"morgan": "^1.10.0",
"tailing-stream": "^0.2.0",
"typescript": "^4.8.3",
"vite": "^3.1.2",
"vue": "^3.2.39",
"vue-router": "^4.1.5",
"why-is-node-running": "^2.2.2"
},
"devDependencies": {
"@types/morgan": "^1.9.3"
}
}