-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.38 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
{
"version": "0.1.0",
"private": true,
"name": "git-bible",
"description": "Reference dictionary about Git, Git Flow and desktop commands made with Vue.",
"author": "[email protected]",
"license": "ISC",
"main": "index.js",
"scripts": {
"install:clean": "rm -rf node_modules package-lock.json",
"dependencies:fix": "npm install --package-lock-only --ignore-scripts && npx npm-force-resolutions",
"preinstall": "npm run install:clean && npm run dependencies:fix",
"postinstall": "npm run lint",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"prettier:fix": "prettier --write \"./**/*.{vue,js,mjs,json}\"",
"eslint:fix": "vue-cli-service lint \"**/*.{json,js,mjs,vue}\" --fix --ignore-path .eslintignore",
"stylelint:fix": "stylelint \"**/*.{css,scss,sass,vue}\" --fix --ignore-path .stylelintignore",
"lint": "npm run prettier:fix && npm run eslint:fix && npm run stylelint:fix",
"deploy": "node gh-pages-deploy.mjs"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^2.0.10",
"chalk": "^5.3.0",
"core-js": "^3.38.1",
"elliptic": "^6.5.7",
"execa": "^7.2.0",
"node-emoji": "^2.1.3",
"vue": "^2.7.15",
"vue-clipboard2": "^0.3.3",
"vue-i18n": "^8.28.2",
"vue-router": "^3.6.5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.8",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/eslint-config-prettier": "^7.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.29.0",
"eslint-webpack-plugin": "^2.7.0",
"postcss": "^8.4.47",
"postcss-html": "^1.7.0",
"prettier": "^2.8.8",
"sass": "^1.80.3",
"sass-loader": "^7.3.1",
"stylelint": "^15.11.0",
"stylelint-config-property-sort-order-smacss": "^9.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.3.2",
"stylelint-webpack-plugin": "^4.1.1",
"vue-template-compiler": "^2.7.16"
},
"resolutions": {
"ejs": ">=3.1.7",
"glob-parent": ">=5.1.2",
"json5": ">=2.2.2",
"node-forge": ">=1.3.0",
"nth-check": ">=2.0.1"
},
"volta": {
"node": "14.21.3",
"npm": "6.14.18"
}
}