-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.67 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.67 KB
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
{
"name": "netabare",
"version": "3.1.1",
"private": false,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"license": "license-checker --production --json --out licenses.json --relativeLicensePath && node scripts/licenses.js licenses.json",
"postversion": "git push && git push --tags && start https://github.com/markni/netabare/actions",
"full-license-update": "npm run license && git diff-index --quiet HEAD -- || git commit -am \"chore: update licenses\" && git diff --cached --quiet || (npm version patch)",
"prepare": "husky"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.12",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"highcharts": "12.5.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
"pinia": "^2.1.7",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"husky": "^9.1.4",
"license-checker": "^25.0.1",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.7.1",
"tailwindcss": "^4.1.12",
"vite": "^6.2.2"
},
"engines": {
"node": "20.19.3"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs}": "eslint --fix --ignore-path .gitignore",
"src/**/*.{vue,js,jsx,cjs,mjs,css}": "prettier --write"
}
}