generated from Destiner/starter-app
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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
{
"name": "contract-scan",
"version": "1.0.0",
"description": "Cross-chain smart contract search",
"author": {
"name": "Timur Badretdinov",
"url": "https://github.com/Destiner"
},
"keywords": [
"evm",
"ethereum",
"smart-contracts",
"devtools"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scope-sh/contract-scan.git"
},
"type": "module",
"scripts": {
"build": "nuxt build --dotenv .env.local",
"dev": "nuxt dev --dotenv .env.local",
"generate": "nuxt generate",
"cache": "bun scripts/cache.ts",
"lint": "bun run lint:prettier && bun run lint:eslint && bun run lint:stylelint",
"lint:prettier": "prettier -c \"{app,public}/**/*.{json,js,ts,vue}\"",
"lint:eslint": "eslint \"{app,public}/**/*.{js,ts,vue}\"",
"lint:stylelint": "stylelint \"{app,public}/**/*.{css,vue}\"",
"typecheck": "tsc --noEmit && vue-tsc --noEmit"
},
"dependencies": {
"@fontsource-variable/inconsolata": "^5.1.0",
"@fontsource-variable/inter": "^5.1.0",
"@types/react": "18.3.3",
"@unhead/vue": "^1.11.13",
"@vercel/node": "^3.2.28",
"@vercel/og": "^0.6.4",
"@vueuse/core": "^12.0.0",
"ky": "^1.7.2",
"nuxt": "^3.14.1592",
"react": "^18.3.1",
"viem": "^2.21.54",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@nuxt/eslint": "^0.7.2",
"@types/bun": "1.1.6",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"eslint": "^9.16.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.4.2",
"stylelint": "16.8.2",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "5.6.3",
"vite": "^6.0.3",
"vite-plugin-vue-devtools": "^7.6.7",
"vite-tsconfig-paths": "^5.1.3",
"vue-tsc": "^2.1.10"
}
}