-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "vue-vite-pinia",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "vite",
"build": "vite build",
"preview": "npm run build && vite preview --port 4173",
"lint": "eslint --ext .js,.vue --config=.eslintrc.cjs src vite.config.js .eslintrc.cjs",
"fix": "eslint --fix --ext .js,.vue --config=.eslintrc.cjs src vite.config.js .eslintrc.cjs"
},
"ManifestComments": [
"Pinned eslint to 8.52.0 until I have time to switch to using @stylistic",
"eslint 8.52.0 was the last version to officially support stylistic linting, now moved to separate repo"
],
"dependencies": {
"pinia": "^2.2.8",
"vue": "^3.5.13",
"vue-options-api-constants-plugin": "^1.0.1",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "8.52.0",
"eslint-config-tjw-base": "^2.0.0",
"eslint-config-tjw-import": "^1.0.0",
"eslint-config-tjw-vue": "^3.0.0",
"eslint-import-resolver-webpack": "^0.13.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"vite": "^5.3.2"
},
"volta": {
"node": "22.11.0"
}
}