-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "launchpad",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix -c ./.eslintrc.json './src/**/*.{ts,tsx}'",
"test": "vitest",
"coverage": "vitest --coverage"
},
"dependencies": {
"@devprotocol/dev-kit": "^5.12.0",
"@devprotocol/hashi": "^0.1.2",
"@devprotocol/khaos-kit": "^1.4.0",
"@devprotocol/util-ts": "^2.2.1",
"@metamask/detect-provider": "^1.2.0",
"@walletconnect/web3-provider": "^1.7.1",
"browserify-zlib": "^0.2.0",
"ethers": "^5.5.2",
"events": "^3.3.0",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-router-dom": "^6.2.1",
"sass": "^1.49.0",
"stream-browserify": "^3.0.0",
"swr": "^1.1.2",
"tailwindcss": "^3.0.16",
"util": "^0.12.4",
"web3": "^1.6.1",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@devprotocol/khaos-core": "^1.6.0",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@rollup/plugin-inject": "^4.0.4",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vitest": "^0.0.142"
},
"exports": {
".": {
"import": "./index.esm.js",
"require": "./index.cjs.js"
}
}
}