-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
108 lines (108 loc) · 3.33 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
104
105
106
107
108
{
"name": "universalprofile-test-dapp",
"version": "0.1.54",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "vue-tsc --noEmit && vite build",
"docs": "cd packages/tools-lukso-provider && yarn docs",
"build:cloudflare": "yarn lint:js && yarn lint:css && yarn lint:format && yarn lint:types && yarn test && yarn build",
"preview": "vite preview",
"test": "jest",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel 'lint:*!(fix)'",
"lint:js": "eslint src --ext .js,.ts,.vue",
"lint:css": "stylelint \"**/*.{css,scss,vue}\"",
"lint:format": "prettier --check --log-level=warn .",
"lint:format:fix": "prettier --write --log-level=warn .",
"lint:types": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@erc725/erc725.js": "0.24.2",
"@lukso/lsp-factory.js": "^3.3.1",
"@lukso/lsp-smart-contracts": "^0.15.0",
"@lukso/up-provider": "^0.2.2",
"@lukso/web3-onboard-config": "1.1.2",
"@pinata/sdk": "^2.1.0",
"@tsndr/cloudflare-worker-jwt": "^2.5.3",
"@types/isomorphic-fetch": "^0.0.39",
"@walletconnect/ethereum-provider": "2.16.0",
"@walletconnect/sign-client": "2.16.0",
"@walletconnect/types": "2.16.0",
"@walletconnect/utils": "2.16.0",
"@web3-onboard/core": "^2.22.3",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3modal/ethereum": "2.7.1",
"@web3modal/standalone": "2.4.3",
"bulma": "0.9.4",
"eth-rpc-errors": "4.0.3",
"ethers": "^5.7.2",
"filesize": "10.0.12",
"https-browserify": "1.0.0",
"isomorphic-fetch": "^3.0.0",
"siwe": "1.1.6",
"tslib": "^2.6.2",
"vue": "^3.4.21",
"vue-router": "4.2.4",
"wagmi": "^1.3.9",
"web3": "1.10.4",
"web3-eth-contract": "1.10.4"
},
"devDependencies": {
"@depay/web3-mock": "^14.17.0",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/user-event": "14.4.3",
"@testing-library/vue": "7.0.0",
"@types/jest": "28.1.8",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "3.4.21",
"@vue/vue3-jest": "28.1.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "9.17.0",
"husky": "^8.0.3",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"lint-staged": "^13.3.0",
"lokijs": "^1.5.12",
"npm-run-all": "4.1.5",
"postcss-html": "^1.5.0",
"prettier": "3.3.3",
"sass": "1.66.1",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"stylelint": "15.10.3",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard-scss": "10.0.0",
"ts-jest": "28.0.8",
"typescript": "^5.4.3",
"util": "0.12.5",
"vite": "^4.4.9",
"vue-loader": "17.2.2",
"vue-tsc": "^2.0.7"
},
"lint-staged": {
"*.{ts,js,vue}": [
"prettier --list-different",
"eslint"
],
"*.json": "prettier --list-different",
"*.ya?ml": "prettier --list-different",
"*.{scss,css,vue}": [
"prettier --list-different",
"stylelint"
]
},
"engines": {
"node": "18.12.1"
},
"packageManager": "[email protected]",
"resolutions": {
"wagmi": "~1.2.0"
}
}