generated from Tahul/vue-composable-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "vue-dapp-monorepo",
"description": "Empower dapp developers with Vue integration for crypto wallets",
"repository": "https://github.com/vu3th/vue-dapp",
"bugs": {
"url": "https://github.com/vu3th/vue-dapp/issues"
},
"homepage": "https://github.com/vu3th/vue-dapp#readme",
"author": "Johnson Chen <https://twitter.com/johnson86tw>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"dev": "pnpm -F app dev",
"build": "pnpm -F core build && pnpm -F modal build && pnpm -F nuxt build && pnpm -F walletconnect build && pnpm -F coinbase build",
"build:app": "pnpm -F app build",
"start": "node app/.output/server/index.mjs",
"format": "prettier --write \"**/*.{vue,ts,js,json}\"",
"publish": "pnpm lerna publish --no-private --force-publish",
"prepare": "husky install",
"typecheck": "pnpm -F core typecheck && pnpm -F modal typecheck && pnpm -F app typecheck"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4"
},
"lint-staged": {
"**/*.{js,ts,json,scss,css,vue}": [
"prettier --write"
]
},
"resolutions": {
"@noble/hashes": "1.3.3"
}
}