-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
90 lines (90 loc) · 2.63 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watchAll",
"emulator": "firebase emulators:start --project=web3dev-development",
"seed": "node scripts/seedFirestore.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "^2.9.7",
"@nextui-org/react": "^1.0.0-beta.12",
"@react-aria/ssr": "^3.9.3",
"@thirdweb-dev/react": "^3.1.2",
"@thirdweb-dev/sdk": "^3.1.2",
"countries-list": "^2.6.1",
"discord.js": "^14.14.1",
"eslint": "7.32.0",
"eslint-plugin-react": "^7.34.2",
"ethers": "^5.6.1",
"firebase": "^9.20.0",
"firebase-admin": "^12.0.0",
"firebase-tools": "13",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.2",
"js-cookie": "^3.0.1",
"lint-staged": "^15.2.7",
"mixpanel-browser": "^2.45.0",
"next": "^12.3.1",
"next-auth": "^4.23.1",
"next-themes": "^0.2.1",
"node-fetch": "2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-firebase-hooks": "^5.0.3",
"react-hook-form": "^7.34.2",
"react-i18next": "^14.0.5",
"react-icalendar-link": "^3.0.2",
"react-icons": "^4.7.1",
"react-markdown": "^8.0.0",
"react-select": "^5.4.0",
"react-toastify": "^8.2.0",
"rehype-prism-plus": "^1.3.2",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"uuidv4": "^6.2.13",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@faker-js/faker": "^9.0.3",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "^14.2.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^28.1.0",
"dotenv": "^16.0.1",
"firebase-admin": "^12.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.1",
"postcss": "^8.4.6",
"postcss-nesting": "^10.1.3",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.1",
"tailwindcss": "^3.0.23"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --check .",
"eslint --fix"
]
},
"name": "web3-bootcamp-platform",
"version": "1.0.0",
"repository": "https://github.com/w3b3d3v/web3-bootcamp-platform.git",
"main": "index.js",
"author": "web3dev",
"license": "MIT"
}