-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.77 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
{
"name": "chordsheets",
"version": "1.5.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build:minor": "npm version minor && npm run pages:update",
"build:major": "npm version major && npm run pages:update",
"build:patch": "npm version patch && npm run pages:update",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"pages:update": "npm run build && git add -A && git commit -m \"new: build update\" && git push"
},
"dependencies": {
"jspdf": "^2.5.1",
"loadash": "^1.0.0",
"lodash": "^4.17.21",
"pinia": "^2.0.35",
"svg2pdf.js": "^2.2.1",
"vue": "^3.4.31",
"vue-router": "^4.4.0",
"vuedraggable": "^4.1.0",
"vite-plugin-pwa": "^0.20.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tonaljs/chord-detect": "^4.8.2",
"@tsconfig/node18": "^2.0.0",
"@types/node": "^18.16.3",
"@vitejs/plugin-vue": "^4.2.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.3.2",
"dom-to-image": "^2.6.0",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"html2canvas": "^1.4.1",
"midi-parser-js": "^4.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"tonal": "^5.0.0",
"tone": "^14.8.49",
"typescript": "^5.5.2",
"vite": "^5.4.6",
"vue-tsc": "^2.0.24"
}
}