-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.75 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
{
"name": "f1-telemetry-app",
"private": true,
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "cross-env MODE=production npm run build && electron-builder build --config .electron-builder.config.js --dir --config.asar=false",
"test": "npm run test:main && npm run test:preload && npm run test:renderer && npm run test:e2e",
"test:e2e": "npm run build && vitest run",
"test:main": "vitest run -r packages/main --passWithNoTests",
"test:preload": "vitest run -r packages/preload --passWithNoTests",
"test:renderer": "vitest run -r packages/renderer --passWithNoTests",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"lint:fix": "eslint . --ext js,ts,vue --fix"
},
"devDependencies": {
"@vitejs/plugin-vue": "2.2.2",
"@vue/test-utils": "2.0.0-rc.18",
"cross-env": "7.0.3",
"electron": "17.0.1",
"electron-builder": "22.14.13",
"electron-devtools-installer": "3.2.0",
"eslint": "8.9.0",
"eslint-plugin-vue": "8.4.1",
"happy-dom": "2.39.1",
"nano-staged": "0.6.0",
"playwright": "1.19.1",
"simple-git-hooks": "2.7.0",
"vite": "2.8.4",
"vitest": "0.4.2"
},
"dependencies": {
"@racehub-io/f1-telemetry-client": "0.2.8",
"csv-parse": "^5.0.4",
"electron-settings": "^4.0.2",
"electron-updater": "4.6.5",
"lodash": "^4.17.21",
"vue": "3.2.31",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
}
}