-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 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
{
"version": "3.5.6",
"private": true,
"name": "vue-users",
"description": "Vue app that get/set a list of random users from an API.",
"author": "[email protected]",
"license": "ISC",
"main": "index.js",
"scripts": {
"install:clean": "rm -rf node_modules package-lock.json",
"postinstall": "npm run lint",
"prepare": "husky",
"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 stylelint:fix && npm run eslint:fix",
"deploy": "node gh-pages-deploy.mjs"
},
"dependencies": {
"chalk": "^5.4.1",
"core-js": "^3.40.0",
"execa": "^9.5.2",
"google-maps-api-loader": "^1.1.1",
"leaflet": "^1.9.4",
"node-emoji": "^2.2.0",
"svg-symbol-sprite-loader": "^5.1.0",
"vue": "^2.7.16",
"vue-router": "^3.6.5",
"vue2-leaflet": "^2.7.1"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/leaflet": "^1.9.16",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^10.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"eslint-webpack-plugin": "^4.2.0",
"file-loader": "^6.2.0",
"husky": "^9.1.7",
"postcss": "^8.5.1",
"postcss-html": "^1.8.0",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"sass-loader": "^16",
"stylelint": "^16.14.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.6.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-scss": "^6.10.1",
"stylelint-webpack-plugin": "^5.0.1",
"vue-template-compiler": "^2.7.16"
},
"engines": {
"node": "20.18.0",
"npm": "10.8.2"
}
}