-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
102 lines (102 loc) · 3.08 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
{
"name": "sx-ui",
"version": "0.1.0",
"license": "MIT",
"main": "main.js",
"repository": "snapshot-labs/sx-ui",
"scripts": {
"dev": "vite --port=8080",
"build": "vite build",
"story:dev": "histoire dev",
"story:build": "histoire build",
"lint:nofix": "eslint \"./src/**/*.{ts,vue,json}\"",
"lint": "yarn lint:nofix --fix",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "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.8.4",
"@argent/get-starknet": "^6.4.7",
"@braintree/sanitize-url": "^6.0.4",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"@floating-ui/vue": "^1.0.2",
"@headlessui/vue": "^1.7.16",
"@openzeppelin/merkle-tree": "^1.0.5",
"@snapshot-labs/eslint-config-vue": "^0.1.0-beta.13",
"@snapshot-labs/lock": "^0.2.0",
"@snapshot-labs/pineapple": "^1.1.0",
"@snapshot-labs/prettier-config": "^0.1.0-beta.7",
"@snapshot-labs/sx": "^0.1.0-beta.58",
"@vueuse/core": "^10.4.1",
"@walletconnect/core": "^2.11.0",
"@walletconnect/types": "^2.11.0",
"@walletconnect/utils": "^2.11.0",
"@walletconnect/web3wallet": "^1.10.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"buffer": "^6.0.3",
"dayjs": "^1.11.10",
"electron": "^26.2.3",
"events": "^3.3.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"ipfs-http-client": "^60.0.1",
"js-sha3": "^0.9.2",
"lodash.set": "^4.3.2",
"mixpanel-browser": "^2.47.0",
"object-hash": "^3.0.0",
"pinia": "^2.1.6",
"remarkable": "^2.0.1",
"scrollmonitor": "^1.2.11",
"starknet": "5.25.0",
"stream-browserify": "^3.0.0",
"unplugin-auto-import": "^0.16.6",
"util": "^0.12.5",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.4",
"@iconify-json/heroicons-outline": "^1.1.7",
"@iconify-json/heroicons-solid": "^1.1.8",
"@rollup/plugin-inject": "^5.0.3",
"@types/mixpanel-browser": "^2.47.4",
"@types/node": "^20.7.1",
"@types/remarkable": "^2.0.4",
"@vitejs/plugin-vue": "^5.0.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"histoire": "^0.17.9",
"husky": "^8.0.3",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.68.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"unplugin-icons": "^0.17.0",
"unplugin-vue-components": "^0.25.2",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"vue-tsc": "^1.8.27"
}
}