-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.62 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.62 KB
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
{
"name": "hedocode-portfolio",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'",
"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"
},
"dependencies": {
"pinia": "^3.0.4",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"vue": "^3.5.28",
"vue-i18n": "^11.2.8",
"vue-router": "^5.0.2"
},
"devDependencies": {
"@intlify/devtools-types": "^11.2.8",
"@rushstack/eslint-patch": "^1.15.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.2.2",
"@vitejs/plugin-vue": "^6.0.4",
"@vitejs/plugin-vue-jsx": "^5.1.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cypress": "^15.10.0",
"eslint": "^10.0.0",
"eslint-plugin-cypress": "^5.2.1",
"eslint-plugin-vue": "^10.7.0",
"jsdom": "^28.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"start-server-and-test": "^2.1.3",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.4"
},
"overrides": {
"@rollup/plugin-node-resolve": "^15.2.3"
}
}