-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.99 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
{
"name": "billboard-app",
"type": "module",
"sideEffects": false,
"engine": {
"node": ">=18.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.623.0",
"@floating-ui/react": "^0.26.19",
"@openzeppelin/merkle-tree": "^1.0.6",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@tanstack/react-query": "^5.28.4",
"@types/is-url": "^1.2.32",
"@types/lodash-es": "^4.17.12",
"@types/uuid": "^10.0.0",
"@wagmi/core": "^2.6.5",
"@walletconnect/modal": "^2.6.2",
"alchemy-sdk": "^3.2.0",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"decimal.js": "^10.4.3",
"embla-carousel-react": "^8.0.0",
"fs-extra": "^11.2.0",
"is-url": "^1.2.4",
"isbot": "latest",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"short-uuid": "^5.2.0",
"usehooks-ts": "^3.1.0",
"viem": "^2.8.10",
"wagmi": "^2.5.7"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@svgr/plugin-prettier": "^8.1.0",
"@types/bn.js": "^5.1.5",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.1",
"typescript": "5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"build": "remix build",
"dev": "remix dev",
"format": "prettier --write \"{,!(build|node_modules|public)/**/*.{js,jsx,ts,tsx,json}}\"",
"lint": "pnpm run lint:ts",
"lint:ts": "tsc --project tsconfig.json --noEmit",
"start": "remix-serve ./build/index.js",
"prepare": "husky install"
}
}