-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "op-scan",
"version": "1.0.0",
"description": "Multichain UserOp search",
"author": {
"name": "Timur Badretdinov",
"url": "https://github.com/Destiner"
},
"keywords": [
"vue",
"starter"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scope-sh/op-scan.git"
},
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "bun run lint:prettier && bun run lint:eslint && bun run lint:stylelint",
"lint:prettier": "prettier -c \"src/**/*.{json,js,ts,vue}\"",
"lint:eslint": "eslint \"src/**/*.{js,ts,vue}\"",
"lint:stylelint": "stylelint \"src/**/*.{css,vue}\"",
"typecheck": "tsc --noEmit && vue-tsc --noEmit"
},
"dependencies": {
"@fontsource-variable/inter": "^5.0.18",
"@fontsource-variable/jetbrains-mono": "^5.0.21",
"@tanstack/vue-table": "^8.16.0",
"@vueuse/core": "^11.0.3",
"evm-providers": "^0.4.5",
"ky": "^1.4.0",
"lightningcss": "^1.24.1",
"pinia": "^2.1.7",
"radix-vue": "^1.8.0",
"viem": "^2.9.28",
"vue": "^3.4.19",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.19",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.22.0",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.4.2",
"vite": "^5.1.4",
"vite-plugin-vue-devtools": "^7.1.3",
"vite-tsconfig-paths": "^5.0.1",
"vue-tsc": "^2.0.7"
}
}