-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.39 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
{
"name": "nounspace-dashboard",
"version": "1.0.0-rc.1",
"gitHooks": {
"pre-push": "yarn rsc"
},
"scripts": {
"vite-dev-server": "vite",
"vite-build": "vite build",
"start": "dotenv -e .env.local yarn vite-dev-server",
"build": "dotenv -e .env.production yarn vite-build",
"analyze": "dotenv -e .env.analyze yarn vite-build",
"preview": "vite preview",
"rsc": "node scripts/release-sanity-check.mjs",
"generate-ether-types": "typechain --target=ethers-v5 'src/abi/**/*.json' --out-dir src/types/contracts"
},
"dependencies": {
"@apollo/client": "^3.9.10",
"@distributedlab/tools": "^1.0.0-rc.13",
"@iconify/json": "^2.2.219",
"@splidejs/vue-splide": "^0.6.12",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"@vueuse/core": "^10.1.2",
"@web3modal/ethers5": "^4.0.13",
"chart.js": "^4.4.2",
"detect-browser": "^5.3.0",
"ethers": "^5.7.2",
"floating-vue": "^5.0.3",
"graphql": "^16.8.1",
"jazzicon": "^1.5.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"pinia": "^2.0.28",
"postcss": "^8.4.20",
"react": "^18.3.1",
"react-icons": "^5.2.1",
"uuid": "^9.0.0",
"vue": "^3.3.2",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@typechain/ethers-v5": "^11.1.2",
"@types/lodash": "^4.14.194",
"@types/node": "^20.1.3",
"@types/uuid": "^9.0.2",
"@types/vuelidate": "^0.7.15",
"@vitejs/plugin-vue": "^4.0.0",
"chalk": "^5.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"postcss-html": "^1.5.0",
"prettier": "^2.8.1",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.57.1",
"stylelint": "^15.6.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-scss": "^5.0.0",
"typechain": "^8.3.2",
"typescript": "^5.0.4",
"vite": "^4.0.3",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-react-icons": "^0.2.0",
"vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.0.2",
"yorkie": "^2.0.0"
}
}