forked from snapshot-labs/snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.91 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
109
110
111
112
113
114
115
{
"name": "snapshot",
"version": "0.1.4",
"scripts": {
"dev": "vite --port=8080",
"cypress:test:e2e": "start-server-and-test 'yarn cypress:serve:build' http-get://localhost:8081 'yarn cypress:run'",
"cypress:dev:e2e": "start-server-and-test 'yarn cypress:serve:dev' http-get://localhost:8081 'yarn cypress:open'",
"cypress:run": "env-cmd -f .env.test cypress run --browser chrome --headed",
"cypress:open": "env-cmd -f .env.test cypress run --browser chrome --headed --no-exit",
"cypress:serve:dev": "VITE_E2E=true vite --port=8081",
"cypress:serve:build": "VITE_E2E=true vite build && npx http-server dist -p 8081",
"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"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.7.13",
"@braintree/sanitize-url": "^6.0.2",
"@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.11.1",
"@headlessui/vue": "^1.7.13",
"@pusher/push-notifications-web": "^1.1.0",
"@shutter-network/shutter-crypto": "0.1.0-beta.3",
"@snapshot-labs/lock": "^0.1.1015",
"@snapshot-labs/pineapple": "^0.1.0-beta.1",
"@snapshot-labs/snapshot.js": "^0.4.82",
"@snapshot-labs/tune": "^0.1.18",
"@vue/apollo-composable": "4.0.0-beta.4",
"@vueuse/core": "^10.1.0",
"@vueuse/head": "^1.1.26",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"autolinker": "^4.0.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"js-sha256": "^0.9.0",
"jsonexport": "^3.2.0",
"lodash": "^4.17.21",
"remarkable": "^2.0.1",
"remove-markdown": "^0.5.0",
"typescript": "^5.0.4",
"v-viewer": "^3.0.11",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vue-tippy": "^6.0.0",
"vuedraggable": "^4.0.2"
},
"devDependencies": {
"@iconify-json/heroicons-outline": "^1.1.6",
"@synthetixio/synpress": "^3.5.1",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.1",
"@vitejs/plugin-vue": "^2.3.4",
"@vitest/ui": "^0.30.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^9.0.0",
"@vue/test-utils": "^2.2.7",
"autoprefixer": "^10.4.14",
"c8": "^7.13.0",
"cypress": "^12.11.0",
"env-cmd": "^10.1.0",
"eslint": "^8.39.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^7.15.1",
"happy-dom": "^9.9.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"patch-package": "^7.0.0",
"postcss": "^8.4.23",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "0.2.5",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "~1.62.1",
"sass-loader": "^13.2.2",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.3.1",
"unplugin-auto-import": "^0.15.3",
"unplugin-icons": "^0.16.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^2.9.14",
"vitest": "^0.30.1",
"vitest-fetch-mock": "^0.2.2"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"axios": "^0.21.1"
},
"license": "MIT",
"repository": "snapshot-labs/snapshot"
}