-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "yugioh-deck-tool",
"version": "5.7.0",
"private": true,
"type": "module",
"description": "A tool to view deck prices, share and edit decks, create random decks and much more",
"author": "F. Rilling",
"bugs": {
"url": "https://github.com/RillingDev/yugioh-deck-tool/issues"
},
"homepage": "https://github.com/RillingDev/yugioh-deck-tool#readme",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/RillingDev/yugioh-deck-tool.git"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"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",
"format": "prettier --write src/"
},
"dependencies": {
"base64-js": "^1.5.1",
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.21.2",
"html2canvas": "^1.4.1",
"lightdash": "^14.0.0",
"lodash-es": "^4.17.21",
"loglevel": "^1.8.0",
"pako": "^2.0.4",
"pinia": "^2.0.23",
"tippy.js": "^6.3.7",
"vue": "^2.7.13",
"vue-select": "^3.18.3",
"vuedraggable": "github:RillingDev/Vue.Draggable#fb1243deb651bc3d97f9df71834d0aeab98e4dd2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node20": "^20.1.2",
"@types/base64-js": "^1.3.0",
"@types/jsdom": "^21.1.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^20.10.4",
"@types/pako": "^2.0.0",
"@types/vue-select": "^3.16.0",
"@vitejs/plugin-vue2": "^2.2.0",
"@vitest/coverage-v8": "^2.0.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^1.3.0",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.0.0",
"jsdom": "^25.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"sass": "^1.53.0",
"typescript": "~5.1.6",
"vite": "^6.0.3",
"vitest": "^2.0.3",
"vue-template-compiler": "^2.7.7",
"vue-tsc": "^0.38.8"
}
}