-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.64 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
{
"name": "chaintrap-ifw",
"version": "0.0.1",
"engines": {
"node": "=18.19.1",
"npm": ">=9.*"
},
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "npm run test:integration && npm run test:unit",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/plugin-syntax-import-attributes": "^7.22.5",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@playwright/test": "^1.28.1",
"@rollup/plugin-commonjs": "^25.0.3",
"@skeletonlabs/skeleton": "^2.4.0",
"@skeletonlabs/tw-plugin": "^0.2.3",
"@storybook/addon-actions": "^7.5.2",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/addon-mdx-gfm": "^7.5.2",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-svelte-csf": "^4.0.9",
"@storybook/blocks": "^7.5.2",
"@storybook/svelte": "^7.5.2",
"@storybook/sveltekit": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@sveltejs/adapter-vercel": "^3.0.3",
"@sveltejs/kit": "^1.20.4",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@web-std/stream": "^1.0.1",
"autoprefixer": "^10.4.14",
"buffer-es6": "^4.9.3",
"chai": "^4.3.8",
"crypto-browserify": "^3.12.0",
"esbuild": "^0.19.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-svelte": "^2.30.0",
"fake-indexeddb": "^4.0.2",
"mocha": "^10.2.0",
"postcss": "^8.4.26",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"storybook": "^7.5.2",
"stream-browserify": "^3.0.0",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"svelte-heros-v2": "^0.7.4",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-tailwind-purgecss": "^0.1.3",
"vitest": "^0.32.2"
},
"type": "module",
"dependencies": {
"@codemirror/commands": "^6.2.5",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.18.0",
"@eth-optimism/sdk": "^2.0.2",
"@floating-ui/dom": "^1.5.3",
"@metamask/jazzicon": "^2.0.0",
"@msgpack/msgpack": "^2.8.0",
"@neocodemirror/svelte": "^0.0.17",
"@openzeppelin/merkle-tree": "^1.0.5",
"@polysensus/blobcodex": "^0.0.10",
"@polysensus/chaintrap-arenastate": "^0.0.43",
"@polysensus/chaintrap-contracts": "^0.3.8",
"@polysensus/diamond-deploy": "^0.3.3",
"@web3auth/base": "^7.2.0",
"@web3auth/modal": "^7.0.2",
"@web3auth/openlogin-adapter": "^7.1.1",
"codemirror": "^6.0.1",
"ethers": "5.7",
"flowbite": "^1.7.0",
"flowbite-svelte": "^0.40.1",
"flowbite-svelte-icons": "^0.4.3",
"idb": "^7.1.1",
"nft.storage": "^7.0.0",
"tailwind-merge": "^1.14.0"
}
}