-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
53
54
55
56
{
"name": "enotlas-music-tools",
"version": "1.0.0",
"description": "Music theory tools project.",
"author": "Enotlas",
"private": true,
"scripts": {
"dev": "nuxt -o",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"check_update": "npx npm-check-updates -u",
"module_update": "yarn install"
},
"lint-staged": {
"*.{js,vue}": "yarn lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.10.1",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/gtm": "^2.2.3",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@tonaljs/tonal": "^3.6.0",
"nuxt": "^2.12.2",
"nuxt-buefy": "^0.3.27",
"vexflow": "^3.0.9",
"vue-scrollto": "^2.18.1",
"sass-loader": "^8.0.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/eslint-module": "^1.1.0",
"@nuxtjs/stylelint-module": "^3.2.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": ">=0.5.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"node-sass": "^4.14.0",
"npm-check-updates": "^4.1.2",
"nuxt-webfontloader": "^1.1.0",
"prettier": "^2.0.5",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.1"
}
}