-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "orbits",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npx prettier --write ."
},
"lint-staged": {
"./**/*.{js,jsx,css}": [
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@badrap/bar-of-progress": "^0.1.2",
"@szhsin/react-menu": "^1.10.0",
"@tailwindcss/typography": "^0.4.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"eslint": "^7.28.0",
"firebase": "^8.5.0",
"firebaseui": "^4.8.0",
"formik": "^2.2.9",
"fs": "0.0.1-security",
"next": "^11.0.0",
"next-pwa": "^5.2.21",
"nookies": "^2.5.2",
"postcss": "^8.2.13",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-firebaseui": "^5.0.2",
"react-hot-toast": "^2.0.0",
"react-iconly": "^2.2.2",
"react-markdown": "^6.0.2",
"react-outside-click-handler": "^1.3.0",
"react-router-dom": "^5.2.0",
"react-toast-notifications": "^2.4.4",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"remark-html": "^13.0.1",
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"swr": "^0.5.6",
"tailwindcss": "^2.1.2"
},
"devDependencies": {
"@types/react": "^17.0.13",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@types/react-outside-click-handler": "^1.3.0",
"autoprefixer": "^10.2.5",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
}
}