-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
159 lines (159 loc) · 6.07 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@balancer/frontend-v2",
"version": "1.91.17",
"engines": {
"node": "=16",
"npm": ">=8"
},
"scripts": {
"vite": "vite",
"dev": "npm run generate:tokenlists && vite",
"serve": "npm run dev",
"build": "npm run generate:tokenlists && vite build",
"build:analyze": "BUILD_ANALIZE=true npm run build",
"build:docker": "export NODE_OPTIONS=--max-old-space-size=8192 && npm run build",
"build:withouttokenlists": "vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"vitest": "vitest",
"test:unit": "NODE_ENV=test vitest",
"test:unit:watch": "NODE_ENV=test vitest -- --watch",
"test:unit:coverage": "vitest --coverage",
"test:unit:silent:coverage": "SILENT_TESTS=true vitest --coverage",
"lint": "eslint . --ext .js,.ts,.vue --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"import-abis": "cp ../core/deployments/artifacts/dockerParity/*.json ./src/utils/balancer/abi/.",
"import-config": "tsc ./scripts/update-config.ts && node ./scripts/update-config.ts",
"prettier": "prettier --check '**/*.*(md|json|yaml|html)' --loglevel warn",
"prettier:fix": "npm run prettier -- --write",
"prepare": "node ./prepare.js",
"stylelint": "stylelint '**/*.{vue,css}'",
"stylelint:fix": "npm run stylelint -- --fix",
"tailwind:build": "tailwind-config-viewer export ./tailwind-static",
"tailwind:view": "tailwind-config-viewer -o",
"generate:tokenlists": "cross-env NODE_ENV=development npx vite-node --options.deps.inline=@ethersproject/basex --options.deps.inline=@ethersproject/signing-key --options.deps.inline=@balancer-labs/sdk ./src/lib/scripts/tokenlists.generator.ts",
"generate:voting-gauges": "NODE_ENV=development npx vite-node --options.deps.inline=date-fns --options.deps.inline=@ethersproject/basex --options.deps.inline=@ethersproject/signing-key --options.deps.inline=@balancer-labs/sdk ./src/lib/scripts/voting-gauge.generator.ts",
"typecheck": "vue-tsc --noEmit"
},
"devDependencies": {
"@aave/protocol-js": "^4.3.0",
"@balancer-labs/assets": "github:balancer-labs/assets#master",
"@balancer-labs/sdk": "^1.0.1-beta.10",
"@balancer-labs/typechain": "^1.0.0",
"@cowprotocol/contracts": "^1.3.1",
"@ensdomains/content-hash": "^2.5.3",
"@ethersproject/abi": "~5.7.0",
"@ethersproject/abstract-provider": "~5.7.0",
"@ethersproject/abstract-signer": "~5.7.0",
"@ethersproject/address": "~5.7.0",
"@ethersproject/bignumber": "~5.7.0",
"@ethersproject/constants": "~5.7.0",
"@ethersproject/contracts": "~5.7.0",
"@ethersproject/providers": "~5.7.0",
"@ethersproject/units": "~5.7.0",
"@georgeroman/balancer-v2-pools": "^0.0.5",
"@gnosis.pm/safe-apps-provider": "^0.6.0",
"@gnosis.pm/safe-apps-sdk": "4.0.0",
"@intlify/unplugin-vue-i18n": "^0.8.1",
"@metamask/detect-provider": "^1.2.0",
"@popperjs/core": "^2.9.2",
"@sentry/browser": "^7.17.4",
"@sentry/tracing": "^7.17.4",
"@tanstack/vue-query": "^4.22.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/vue": "^6.4.2",
"@tomfrench/ens-avatar-resolver": "^0.1.0",
"@types/animejs": "^3.1.3",
"@types/debounce-promise": "^3.1.6",
"@types/jest": "^27.0.0",
"@types/lodash": "^4.14.182",
"@types/node": "^14.17.1",
"@types/numeral": "^2.0.1",
"@types/parse-filepath": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.25.3",
"@vue/test-utils": "^2.2.7",
"@vueuse/core": "^4.3.4",
"@walletconnect/web3-provider": "^1.5.2",
"animejs": "^3.2.1",
"autoprefixer": "^10.4.13",
"axios": "0.21.2",
"bignumber.js": "^9.0.1",
"bnc-sdk": "^3.7.1",
"color": "^4.2.3",
"color.js": "^1.2.0",
"date-fns": "^2.21.1",
"debounce-promise": "^3.1.2",
"echarts": "^5.3.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier-vue": "^4.2.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "^2.0.1",
"eslint-plugin-vue": "^9.6.0",
"ethereumjs-util": "^7.0.7",
"events": "^3.3.0",
"feather-icons": "^4.28.0",
"happy-dom": "^8.1.3",
"husky": "^8.0.0",
"jest-extended": "^3.1.0",
"jest-mock-extended": "^3.0.1",
"json-to-graphql-query": "^2.0.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"msw": "^0.49.2",
"nprogress": "^0.2.0",
"numeral": "^2.0.4",
"parse-filepath": "1.0.2",
"postcss": "^8.4.21",
"postcss-comment": "^2.0.0",
"prettier": "^2.7.1",
"promise-worker": "^2.0.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-visualizer": "^5.8.3",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"stylelint-prettier": "^2.0.0",
"tailwind-config-viewer": "^1.7.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"unplugin-auto-import": "^0.14.2",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.1.4",
"vite-node": "^0.28.5",
"vite-plugin-html": "^3.2.0",
"vite-plugin-node-polyfills": "^0.7.0",
"vite-plugin-sentry": "^1.1.6",
"vitest": "^0.28.5",
"vitest-mock-extended": "^1.0.9",
"vue": "3.2.45",
"vue-echarts": "^6.0.0",
"vue-i18n": "^9.2.2",
"vue-loader": "^17.0.0",
"vue-router": "^4.0.10",
"vue-slider-component": "^4.1.0-beta.2",
"vue-tsc": "^1.0.24",
"vue3-jazzicon": "^0.1.4",
"vue3-virtual-scroller": "^0.2.1",
"wait-for-expect": "^3.0.2",
"walletlink": "^2.1.5",
"web3-utils": "^1.3.1",
"worker-loader": "^3.0.8"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix --max-warnings 1",
"*.{md,json,yaml,html}": "prettier --write",
"*.{css,vue}": "stylelint --fix"
},
"license": "MIT",
"repository": "balancer/frontend-v2",
"dependencies": {
"cross-env": "^7.0.3"
}
}