-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "web-oscilloscope",
"version": "0.2.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue,.ts src",
"test": "vitest",
"test:unit": "vitest run",
"coverage": "vitest run --coverage",
"deploy": "node scripts/gh-pages-deploy.mjs"
},
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"dependencies": {
"path": "^0.12.7",
"pinia": "^2.0.32",
"vue": "^3.2.47"
},
"devDependencies": {
"@pinia/testing": "^0.0.15",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-istanbul": "^0.29.1",
"@vue/test-utils": "^2.3.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.9.0",
"execa": "^7.0.0",
"jsdom": "^21.1.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.1",
"vue-tsc": "^1.2.0"
}
}