forked from MorpheusAIs/DashBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.02 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
{
"name": "morpheus-dashboard",
"version": "1.0.0-rc.1",
"gitHooks": {
"pre-commit": "yarn lint",
"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",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint \"src/**/*.{vue,scss,css}\" --max-warnings=0",
"lint:scripts": "eslint \"{src,config}/**/*.{vue,js,ts}\" --cache --fix --max-warnings=0",
"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",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@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",
"flatpickr": "^4.6.13",
"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",
"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",
"@rushstack/eslint-patch": "^1.1.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",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"chalk": "^5.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.8.0",
"eslint-plugin-vue-i18n": "^0.3.0",
"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-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.0.2",
"yorkie": "^2.0.0"
},
"engines": {
"node": "20.x"
}
}