-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 2.37 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
55
56
{
"name": "choochooshoe.github.io",
"private": true,
"version": "0.5.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --assetsDir bin",
"typed_build": "vue-tsc --noEmit && vite build --assetsDir bin",
"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",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"deploy": "deploy.sh",
"build_champions": "echo export type ChampionName = string; > ./src/model/ChampionListData.ts && echo export const ChampionSkillsData = {};export type ChampionSkillsDataType = any; > ./src/model/ChampionSkillsData.ts && tsc --build ./dev && node --es-module-specifier-resolution=node ./build/dev/build_champions.js > ./dev/build_champions.log && npm run lint",
"build_items": "tsc --build ./dev && node --es-module-specifier-resolution=node ./build/dev/build_items.js > ./dev/build_items.log && npm run lint",
"build_perks": "tsc --build ./dev && node --es-module-specifier-resolution=node ./build/dev/build_perks.js > ./dev/build_perks.log",
"gen_per_champ_skill_effects": "tsc --build ./dev && node --es-module-specifier-resolution=node ./build/dev/gen_per_champ_skill_effects.js > ./dev/gen_per_champ_skill_effects.log && npm run lint"
},
"dependencies": {
"@primevue/themes": "^4.2.5",
"pinia": "2.3.0",
"primeflex": "3.3.1",
"primeicons": "7.0.0",
"primevue": "^4.2.5",
"vue": "3.5",
"vue-router": "4.5.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.4.21",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"moo": "^0.5.2",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"parenthesis": "^3.1.8",
"prettier": "^3.4.2",
"ts-essentials": "^10.0.3",
"typescript": "^5.7.2",
"vite": "^6.0.4",
"vue-tsc": "^2.1.10"
}
}