-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
88 lines (88 loc) · 3.05 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
{
"version": "3.7.2",
"private": true,
"name": "vue-todolist",
"description": "To-do list made with Vue.",
"author": "[email protected]",
"license": "ISC",
"main": "index.js",
"scripts": {
"install:global": "node ./bin/preinstall-global-dependencies.js",
"install:clean": "rm -rf node_modules package-lock.json",
"preinstall": "npm run install:global",
"postinstall": "npm run lint",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"prettier:fix": "prettier --write \"./**/*.{css,scss,sass,json,js,cjs,mjs,vue}\"",
"eslint:fix": "vue-cli-service lint \"**/*.{json,js,cjs,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",
"changelog:init": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:update": "standard-version --tag-prefix='' --release-commit-message-format 'ci(changelog): update files with the new version {{currentTag}}'",
"changelog:update:gitflow": "sh ./bin/standar-version-updater-gitflow.sh",
"deploy": "node gh-pages-deploy.mjs",
"prepare": "husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^2.0.10",
"chalk": "^5.4.1",
"core-js": "^3.39.0",
"execa": "^9.5.2",
"node-emoji": "^2.2.0",
"svg-symbol-sprite-loader": "^5.1.0",
"vue": "^2.7.16",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^10.1.0",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"eslint-webpack-plugin": "^4.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"sass-loader": "^16",
"standard-version": "^9.5.0",
"stylelint": "^16.12.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.10.0",
"stylelint-webpack-plugin": "^5.0.1",
"vue-template-compiler": "^2.7.16"
},
"globalDependencies": {
"@vue/cli": "^5.0.8",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^3.4.2",
"standard-version": "^9.5.0"
},
"engines": {
"node": "20.18.0",
"npm": "10.8.2"
}
}