-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "baymac.io",
"version": "0.1.0",
"private": true,
"author": {
"name": "Parichay Barpanda",
"email": "[email protected]",
"url": "https://baymac.io"
},
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"prettify": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"pre-commit": "yarn lint --fix && git add -A .",
"update-content": "./scripts/update_content.sh"
},
"dependencies": {
"@hookform/resolvers": "^2.8.8",
"@iconscout/react-unicons": "^1.1.6",
"@sentry/nextjs": "^6.18.2",
"async-ratelimiter": "^1.2.8",
"classnames": "^2.2.6",
"date-fns": "^2.22.1",
"firebase": "^8.7.1",
"focus-trap-react": "^8.7.0",
"gray-matter": "^4.0.3",
"ioredis": "^4.27.6",
"jsonwebtoken": "^8.5.1",
"next": "^12.1.0",
"next-themes": "^0.0.15",
"nodemailer": "^6.6.3",
"pug": "^3.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.30.0",
"remark": "^13.0.0",
"remark-html": "^13.0.2",
"request-ip": "^2.1.3",
"swr": "^0.5.6",
"use-clipboard-copy": "^0.2.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"globby": "^11.0.4",
"husky": "^6.0.0",
"prettier": "^2.3.2",
"rss": "^1.2.2",
"typescript": "^4.3.4"
}
}