This repository has been archived by the owner on Oct 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.48 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
{
"name": "chordwiki-plus",
"version": "2.4.0",
"author": "",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --fix --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env NODE_ENV=development HMR=true npm run build:dev -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/vue-fontawesome": "^2.0.0",
"axios": "^0.21.1",
"buefy": "^0.9.4",
"node-html-parser": "^2.0.0",
"query-string": "^6.13.7",
"v-clipboard": "^2.2.3",
"vue": "^2.6.12",
"vue-meta": "^2.4.0",
"vue-router": "^3.4.7",
"vuex": "^3.6.2",
"webextension-polyfill": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.12.7",
"@babel/runtime-corejs3": "^7.12.1",
"@vue/composition-api": "^1.0.0-beta.18",
"archiver": "^5.0.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^6.4.1",
"core-js": "^3.10.1",
"cross-env": "^7.0.2",
"css-loader": "^5.2.1",
"ejs": "^3.1.5",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"eslint-plugin-vue": "^7.0.1",
"file-loader": "^6.2.0",
"husky": "^4.3.0",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^4.9.3",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"pug": "^3.0.1",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^10.0.4",
"ts-loader": "^8.0.11",
"typescript": "^4.0.3",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"web-ext-types": "^3.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^4.6.0",
"webpack-extension-reloader": "^1.1.0"
}
}