-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.73 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "decentralized-bookstore",
"version": "1.0.0",
"license": "MIT",
"description": "Vue 3 based - Ethereum and VueJS dApp for managing decentralized bookstore",
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview --host",
"start": "node server/index.js",
"go": "yarn build && yarn start",
"deploy": "ipfs-deploy -p pinata dist/",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "jest",
"test": "yarn run test:types && yarn run test:unit"
},
"files": [
"dist/**/*",
"src/**/*"
],
"dependencies": {
"@ethersproject/abi": "^5.6.1",
"@ethersproject/contracts": "^5.6.0",
"@ethersproject/providers": "^5.6.5",
"@metamask/detect-provider": "^1.2.0",
"@pinata/sdk": "^1.1.25",
"@vitejs/plugin-vue": "^2.3.3",
"@walletconnect/web3-provider": "^1.7.8",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"ipfs-deploy": "^11.2.2",
"node-cmd": "^5.0.0",
"path": "^0.12.7",
"serve-static": "^1.15.0",
"vite": "^2.9.9",
"vite-plugin-mix": "^0.3.1",
"vitepress": "^0.22.4",
"vue-router": "^4.0.15",
"vue-spinner": "^1.0.4",
"vue3-datepicker": "^0.3.3",
"vue3-promise-dialog": "^0.3.4",
"web3": "^1.7.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-inject": "^4.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^2.4.1",
"@types/jest": "^26.0.20",
"@vue/compiler-sfc": "^3.0.6",
"@vue/test-utils": "^2.0.0-beta.13",
"@vuedx/typecheck": "^0.6.3",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"buffer": "^6.0.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"pascalcase": "^1.0.0",
"prettier": "^2.2.1",
"process": "^0.11.10",
"rollup": "^2.40.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2",
"util": "^0.12.4",
"vue": "3.2.23",
"yorkie": "^2.0.0"
},
"engines": {
"node": "16.x"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"keywords": [
"vue",
"vue3",
"dapp",
"web3",
"ethereum",
"hook",
"composable"
]
}