-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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
{
"name": "modular-synth",
"description": "A modular synth",
"author": "wes hatch <wes.hatch@gmail.com>",
"version": "1.0.0",
"private": true,
"type": "module",
"typings": "src/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "pnpm vite build",
"preview": "vite preview",
"ts": "vue-tsc --build",
"test:e2e": "cypress open --component",
"test:watch": "vitest --globals --environment jsdom --root src/",
"test": "vitest run --globals --environment jsdom --root src/",
"lint": "oxlint --fix"
},
"dependencies": {
"pinia": "^2.3.0",
"uuid": "^9.0.1",
"vue": "^3.5.13",
"zod": "4.0.5"
},
"devDependencies": {
"@testing-library/vue": "^8.1.0",
"@types/jsdom": "^21.1.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"cypress": "^13.16.0",
"jsdom": "^25.0.1",
"oxlint": "^0.15.0",
"typescript": "~5.6.3",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"postcss": {
"plugins": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}