-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "rails-turbo-vue",
"license": "MIT",
"dependencies": {
"@hotwired/turbo-rails": "^7.3.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.13.0",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.0",
"@vue/tsconfig": "^0.3.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-plugin-vue": "^9.15.1",
"jsdom": "^22.1.0",
"postcss": "^8.4.23",
"prettier": "^2.5.1",
"rollup-plugin-visualizer": "^5.9.2",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^5.0.0",
"vite-plugin-full-reload": "^1.0.5",
"vite-plugin-ruby": "^5.0.0",
"vitest": "^0.32.4"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"coverage": "vitest run --coverage",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"packageManager": "[email protected]"
}