forked from snapshot-labs/sx-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.65 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.65 KB
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
{
"name": "sx-ui",
"version": "0.1.0",
"license": "MIT",
"main": "main.js",
"scripts": {
"dev": "vite --port=8080",
"build": "vite build",
"lint:nofix": "eslint \"./src/**/*.{ts,vue,json}\"",
"lint": "yarn lint:nofix --fix",
"typecheck": "vue-tsc --noEmit",
"test:unit": "vitest",
"electron:start": "electron .",
"electron:build": "ELECTRON=true yarn build"
},
"eslintConfig": {
"extends": [
"@snapshot-labs/vue",
"./.eslintrc-auto-import.json"
]
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"@apollo/client": "^3.7.1",
"@argent/get-starknet": "^5.2.0",
"@braintree/sanitize-url": "^6.0.0",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.6.1",
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/constants": "^5.6.1",
"@ethersproject/providers": "^5.6.4",
"@ethersproject/units": "^5.6.1",
"@floating-ui/vue": "^0.2.1",
"@headlessui/vue": "^1.7.14",
"@snapshot-labs/eslint-config-vue": "^0.1.0-beta.7",
"@snapshot-labs/lock": "^0.1.1019",
"@snapshot-labs/pineapple": "^0.1.0-beta.1",
"@snapshot-labs/prettier-config": "^0.1.0-beta.7",
"@snapshot-labs/sx": "^0.1.0-beta.32",
"@vueuse/core": "^9.4.0",
"@walletconnect/client": "^1.7.8",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"buffer": "^6.0.3",
"dayjs": "^1.11.2",
"electron": "^21.2.2",
"events": "^3.3.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"ipfs-http-client": "^60.0.0",
"lodash.set": "^4.3.2",
"pinia": "^2.0.23",
"remarkable": "^2.0.1",
"scrollmonitor": "^1.2.9",
"starknet": "5.0.1",
"stream-browserify": "^3.0.0",
"unplugin-auto-import": "^0.15.2",
"util": "^0.12.5",
"vue": "^3.2.41",
"vue-gtag": "^2.0.1",
"vue-router": "^4.1.6",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@iconify-json/heroicons-outline": "^1.1.2",
"@iconify-json/heroicons-solid": "^1.1.6",
"@rollup/plugin-inject": "^5.0.2",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/node": "^18.6.1",
"@types/remarkable": "^2.0.3",
"@vitejs/plugin-vue": "^3.0.1",
"autoprefixer": "^10.4.5",
"eslint": "^8.28.0",
"husky": "^8.0.1",
"postcss": "^8.4.13",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.7.1",
"sass": "^1.54.0",
"tailwindcss": "^3.1.6",
"typescript": "^4.9.3",
"unplugin-icons": "^0.14.3",
"unplugin-vue-components": "^0.21.1",
"vite": "^3.2.3",
"vitest": "^0.19.0",
"vue-tsc": "^1.0.24"
}
}