-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "nemory",
"description": "A Vue.js project",
"version": "0.3.0",
"license": "MIT",
"repository": "github:Neofonie/nemory",
"author": {
"name": "Neofonie",
"url": "https://neofonie.de/"
},
"contributors": [
"Tim Priwe <tim.priwe@neofonie.de>",
"Veeck <veeck@neofonie.de>"
],
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:prettier": "prettier -w -u src/**/*.{css,js,vue}",
"lint:script": "eslint -c eslint.config.js --ext .js,vue --ignore-path .gitignore . --fix",
"lint:style": "stylelint src/**/*.{css,scss,vue}",
"prepare": "husky install"
},
"dependencies": {
"vue": "^3.5.11"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.11",
"@vue/eslint-config-prettier": "^7.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.11.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^13.2.1",
"postcss": "^8.4.47",
"prettier": "^2.6.0",
"sass": "^1.79.4",
"stylelint": "^15.10.1",
"stylelint-config-recommended-vue": "^1.3.0",
"tailwindcss": "^3.3.1",
"vite": "^5.4.8"
},
"browserslist": [
"last 2 versions",
"> 1%",
"maintained node versions",
"not dead"
],
"lint-staged": {
"*.js": "eslint --cache -c eslint.config.js --fix",
"*.{css,scss,vue}": "stylelint --fix",
"*": "prettier -w -u"
}
}