forked from snapshot-labs/snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.52 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": "snapshot",
"version": "0.1.4",
"scripts": {
"dev": "vite --port=8080",
"preinstall": "yarn run init-submodules",
"build": "vite build",
"lint": "eslint \"./src/*/**/*.{js,ts,vue,json}\" --fix",
"postinstall": "patch-package && husky install",
"init-submodules": "git submodule update --init",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "start-server-and-test test:e2e:serve http://localhost:8081 test:e2e:run",
"test:e2e:debug": "start-server-and-test test:e2e:serve http://localhost:8081 test:e2e:open",
"test:e2e:serve": "vite build && npx http-server dist -p 8081",
"test:e2e:run": "cypress run",
"test:e2e:open": "cypress open"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.6.7",
"@braintree/sanitize-url": "^6.0.0",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.6.1",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@ethersproject/random": "^5.7.0",
"@ethersproject/solidity": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@headlessui-float/vue": "^0.9.1",
"@headlessui/vue": "^1.7.2",
"@pusher/push-notifications-web": "^1.1.0",
"@shutter-network/shutter-crypto": "0.1.0-beta.3",
"@snapshot-labs/lock": "^0.1.1012",
"@snapshot-labs/pineapple": "^0.1.0-beta.1",
"@snapshot-labs/snapshot.js": "^0.4.57",
"@vue/apollo-composable": "4.0.0-alpha.18",
"@vueuse/core": "^9.1.1",
"autolinker": "^4.0.0",
"eslint": "^8.23.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"js-sha256": "^0.9.0",
"jsonexport": "^3.2.0",
"lodash": "^4.17.21",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"remarkable": "^2.0.1",
"remove-markdown": "^0.5.0",
"scrollmonitor": "^1.2.9",
"typescript": "^4.8.3",
"vue": "^3.2.39",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.5",
"vue-tippy": "^6.0.0-alpha.63",
"vuedraggable": "^4.0.2"
},
"devDependencies": {
"@iconify-json/heroicons-outline": "^1.1.4",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-vue": "^2.3.4",
"@vitest/ui": "^0.23.4",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^9.0.0",
"@vue/test-utils": "^2.0.2",
"autoprefixer": "^10.4.12",
"c8": "^7.12.0",
"cypress": "^10.8.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.15.1",
"happy-dom": "^6.0.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"rollup-plugin-visualizer": "^5.8.1",
"sass": "~1.55.0",
"sass-loader": "^13.0.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"unplugin-icons": "^0.14.10",
"unplugin-vue-components": "^0.22.7",
"vite": "^2.9.14",
"vitest": "^0.23.4",
"vitest-fetch-mock": "^0.2.1"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"axios": "^0.21.1"
},
"license": "MIT",
"repository": "snapshot-labs/snapshot"
}