-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
89 lines (89 loc) · 2.55 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
{
"name": "defikids-dapp",
"private": true,
"version": "1.0.0",
"description": "DefiKids is a place where families can go to educate kids about budgets using crypto | defi safely.",
"author": "Jason Schwarz <jason.c.schwarz@gmail.com> & Nathan Tarbert <nate4t@hotmail.com>",
"license": "MIT",
"homepage": "https://defikids.io",
"repository": {
"type": "git",
"url": "https://github.com/defikids/defikids-dapp"
},
"engines": {
"node": ">=18",
"yarn": ">=1.22.10"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"docker": "docker build -t defikids-dapp . && docker run -p 3000:3000 defikids-dapp"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource-variable/jetbrains-mono": "^5.0.8",
"@fontsource/permanent-marker": "^5.0.7",
"@fontsource/slackey": "^5.0.7",
"@pinata/sdk": "^2.1.0",
"@rainbow-me/rainbowkit": "^1.0.8",
"@sendgrid/mail": "^7.7.0",
"@tabler/icons-react": "^2.42.0",
"@uniswap/widgets": "^2.59.0",
"@vercel/kv": "^0.2.2",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.0",
"ethers": "^6.8.1",
"formidable": "2.1.1",
"framer-motion": "^10.15.0",
"fs": "^0.0.1-security",
"graphql": "^16.7.1",
"immer": "^10.0.2",
"jsonwebtoken": "8.5.1",
"mongodb": "^6.3.0",
"mongoose": "^8.0.3",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-redux": "^8.1.3",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.0",
"viem": "0.3.35",
"wagmi": "^1.4.12",
"web3": "^4.2.2",
"zustand": "^4.4.0"
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"@types/formidable": "2.0.6",
"@types/jsonwebtoken": "^9.0.2",
"@types/mocha": "^9.1.0",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.4.5",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.7",
"eslint": "8.8.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typechain": "^3.0.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
}
}