This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
95 lines (95 loc) · 3.19 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"private": true,
"name": "fretboarder",
"description": "A web app to visualize scales, chords and arpeggios on all kinds of fretboards.",
"version": "3.1.0",
"license": "MPL-2.0",
"repository": "github:cheap-glitch/fretboarder",
"author": "cheap glitch <[email protected]> (https://github.com/cheap-glitch)",
"homepage": "https://fretboarder.app",
"main": "src/main.js",
"directories": {
"test": "test"
},
"scripts": {
"analyze-bundle": "vue-cli-service build --report-json && webpack-bundle-analyzer dist/report.json",
"build": "vue-cli-service build",
"coverage": "nyc npm test",
"lint": "npm run lint:js && npm run lint:style",
"lint:js": "vue-cli-service lint --no-fix",
"lint:style": "vue-cli-service lint:style --no-fix",
"serve": "nodemon --watch vue.config.js --exec npm run serve-vue-cli",
"serve-vue-cli": "vue-cli-service serve --open",
"sitemap": "vue-cli-service sitemap",
"test": "mocha",
"test:vue": "vue-cli-service test:unit 'test/*.test.js'"
},
"browserslist": [
"defaults",
"not ie 11"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/pro-regular-svg-icons": "^5.15.1",
"@fortawesome/pro-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^2.0.0",
"@popperjs/core": "^2.5.4",
"core-js": "^3.8.1",
"file-saver": "^2.0.5",
"v-click-outside": "^3.1.2",
"vue": "^2.6.12",
"vue-css-modifiers": "^1.0.8",
"vuex": "^3.6.0",
"vuex-pathify": "^1.4.4",
"vuex-plugin-save-state": "^2.0.0"
},
"optionalDependencies": {
"@fortawesome/pro-regular-svg-icons": "^5.15.1",
"@fortawesome/pro-solid-svg-icons": "^5.15.1"
},
"devDependencies": {
"@cheap-glitch/scss-mixins": "^1.0.1",
"@cheap-glitch/scss-reset": "^1.0.1",
"@cheap-glitch/stylelint-config-properties-order": "^1.0.0",
"@cheap-glitch/vue-cli-plugin-fontawesome": "^1.0.9",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-plugin-unit-mocha": "^4.5.9",
"@vue/cli-plugin-vuex": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/test-utils": "^1.1.1",
"@winner-fed/stylelint-config-win": "^0.1.0",
"@winner-fed/vue-cli-plugin-stylelint": "^1.0.4",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"eslint-plugin-smarter-tabs": "^1.1.2",
"eslint-plugin-vue": "^7.2.0",
"esm": "^3.2.25",
"fibers": "^5.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"mocha": "^8.2.0",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"pug": "^3.0.0",
"pug-plain-loader": "^1.0.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"sass-mq": "^5.0.1",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"vue-cli-plugin-sitemap": "^2.3.0",
"vue-template-compiler": "^2.6.12",
"webpack-bundle-analyzer": "^4.2.0"
}
}