-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.51 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
70
71
72
73
{
"name": "siege-ui",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@8.14.0",
"engines": {
"node": "^20"
},
"scripts": {
"build": "pnpm typecheck && vite build",
"dev": "vite",
"lint": "eslint src",
"postinstall": "husky install",
"serve": "vite preview",
"typecheck": "pnpm vue-tsc --noEmit"
},
"lint-staged": {
"*.{js,vue,ts,html,json,json5,graphql}": [
"prettier --write"
]
},
"dependencies": {
"clipboard-copy": "4.0.1",
"graphql": "16.8.1",
"vue": "3.4.4"
},
"devDependencies": {
"@beequeue/eslint-plugin": "4.0.1",
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@vitejs/plugin-vue": "5.0.2",
"@vue/compiler-sfc": "3.4.4",
"browserslist": "4.22.2",
"esbuild-plugin-browserslist": "0.10.0",
"eslint": "8.57.0",
"husky": "8.0.3",
"lint-staged": "15.2.2",
"prettier": "3.1.1",
"sass": "1.69.7",
"typescript": "5.3.3",
"vite": "5.0.13",
"vite-plugin-webfont-dl": "3.9.1",
"vite-tsconfig-paths": "4.2.3",
"vue-tsc": "1.8.27"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"gopd": "npm:@nolyfill/gopd@latest",
"has-property-descriptors": "npm:@nolyfill/has-property-descriptors@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"has-symbols": "npm:@nolyfill/has-symbols@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"isarray": "npm:@nolyfill/isarray@latest",
"jsonify": "npm:@nolyfill/jsonify@latest",
"object-keys": "npm:@nolyfill/object-keys@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"has": "npm:@nolyfill/has@latest"
}
}
}