-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 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
{
"name": "universalprofile-social-recovery-tool",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel 'lint:!(fix)'",
"lint:js": "vue-cli-service lint",
"lint:css": "stylelint \"**/*.{css,scss,vue}\"",
"lint:format": "prettier --check --loglevel=warn .",
"lint:types": "tsc --noEmit"
},
"dependencies": {
"@erc725/erc725.js": "0.14.2",
"@lukso/lsp-factory.js": "^2.3.2",
"@lukso/lsp-smart-contracts": "file:lib/lsp-smart-contracts",
"@lukso/universalprofile-smart-contracts": "0.4.1",
"@types/node": "^16.7.2",
"@walletconnect/client": "1.7.1",
"@walletconnect/qrcode-modal": "1.7.1",
"@walletconnect/web3-provider": "1.7.1",
"axios": "^0.27.2",
"bulma": "^0.9.3",
"core-js": "^3.16.1",
"eth-rpc-errors": "4.0.3",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "5.4.6",
"filesize": "^8.0.0",
"npm-run-all": "4.1.5",
"pinia": "^2.0.18",
"postcss-html": "1.3.0",
"sass": "^1.37.5",
"stylelint": "^14.5.2",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-recommended-vue": "1.3.0",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-prettier": "2.0.0",
"stylelint-scss": "4.1.0",
"vue": "3.2.23",
"vue-router": "4.0.8",
"web3": "^1.6.0"
},
"devDependencies": {
"@testing-library/dom": "8.11.1",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/user-event": "13.5.0",
"@testing-library/vue": "6.4.2",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "4.5.15",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "3.2.24",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^9.8.6",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.16.0",
"hardhat": "^2.6.4",
"lint-staged": "^11.1.2",
"postcss": "^7.0.36",
"prettier": "^2.3.2",
"sass-loader": "10.1.1",
"typescript": "~4.1.5",
"vue-jest": "5.0.0-alpha.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"engines": {
"node": "16.16.0"
}
}