-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.4 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.4 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
{
"name": "seedao-node-conference",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"copy-images": "node --experimental-json-modules scripts/copyImages.js",
"generate-sitemap": "node scripts/generate-sitemap.js",
"dev": " VITE_CHAIN=mainnet vite",
"dev:ps": "cross-env VITE_CHAIN=mainnet vite",
"dev:test": " VITE_CHAIN=testnet vite",
"generate-route-html": "node scripts/generate-route-html.js",
"build": "npm run copy-images && tsc && VITE_CHAIN=mainnet vite build && npm run generate-sitemap",
"build:dev": "npm run copy-images && tsc && VITE_CHAIN=testnet vite build && npm run generate-sitemap",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\""
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@joyid/wagmi": "^0.1.0",
"@reduxjs/toolkit": "^2.5.1",
"@seedao/sns-js": "^0.8.1",
"@tailwindcss/typography": "^0.5.9",
"clsx": "^2.0.0",
"dayjs": "^1.11.9",
"ethers": "^5.7.2",
"lucide-react": "^0.475.0",
"react": "^18.2.0",
"react-countdown": "^2.3.5",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-redux": "^9.2.0",
"react-router-dom": "^6.15.0",
"react-toastify": "^11.0.3",
"redux-persist": "^6.0.0",
"styled-components": "^6.1.15",
"wagmi": "^1.4.12"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.4.27",
"prettier": "^3.5.0",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}