-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 973 Bytes
/
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
{
"name": "ruby-rails-examples",
"type": "module",
"version": "0.0.1",
"author": "wudi",
"engines": {
"node": ">=18.20.3",
"pnpm": ">=9.1.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint ./src/**/*.{vue,ts,tsx}",
"lint:fix": "eslint ./src/**/*.{vue,ts,tsx} --fix",
"format": "prettier --check \"./src/**/*.{vue,ts,tsx}\"",
"format:fail": "prettier --check --write \"./src/**/*.{vue,ts,tsx}\" \"./vite.config.ts\""
},
"dependencies": {
"vue": "2.7.16",
"vue-router": "3.6.5",
"vuex": "3.6.2"
},
"devDependencies": {
"@cdlab996/eslint-config-vue2": "0.0.13",
"@cdlab996/prettier-config": "0.0.13",
"@vitejs/plugin-vue2": "2.3.1",
"@vitejs/plugin-vue2-jsx": "1.1.1",
"eslint": "8.57.0",
"prettier": "3.3.2",
"unocss": "0.61.5",
"vite": "5.3.3",
"vite-plugin-full-reload": "1.2.0",
"vite-plugin-ruby": "5.0.0"
}
}