-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (53 loc) · 1.4 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
{
"name": "vue-project",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true,
"printWidth": 80,
"semi": true,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"tabWidth": 2,
"useTabs": false,
"vueIndentScriptAndStyle": true,
"endOfLine": "auto"
},
"dependencies": {
"axios": "^1.6.0",
"pinia": "^2.1.7",
"tailwind": "^4.0.0",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.19.2",
"postcss": "^8.4.34",
"prettier": "^3.0.3",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^4.5.1"
}
}