-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 959 Bytes
/
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
{
"name": "sky-piano",
"version": "0.6.1",
"private": true,
"author": "Vincent Lee <vv314@foxmail.com>",
"scripts": {
"build": "marax build",
"test": "marax test",
"dev": "marax dev",
"deploy": "node build/deploy"
},
"homepage": "https://vv314.github.io/sky-piano",
"dependencies": {
"howler": "^2.1.2",
"midi-player-js": "^2.0.5",
"tone": "^13.4.9",
"vue": "^2.6.10"
},
"devDependencies": {
"@mara/x": "^2.5.0",
"gh-pages": "^2.0.1",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"midi-file": "^1.1.1",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.6.10",
"wintip": "^1.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "eslint-config-sinamfe"
}
}