forked from Rajdip019/freeflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.17 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
{
"name": "freeflow-image-review",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:email": "EMAIL_DEV=true email dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty-quick": "pretty-quick --staged --branch main",
"prepare": "husky install",
"format": "prettier --write .",
"pre-commit": "npm run format && git add -A .",
"deploy:prod": "git checkout main && git pull origin main && ./scripts/deploy_prod.sh",
"deploy:stage": "git checkout stage && git pull origin stage && ./scripts/deploy_stage.sh"
},
"dependencies": {
"@ant-design/cssinjs": "^1.16.2",
"@ant-design/icons": "^5.2.5",
"@chakra-ui/icons": "^2.0.18",
"@chakra-ui/react": "^2.5.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@pqina/pintura": "^8.66.3",
"@pqina/react-pintura": "^8.57.8",
"@react-email/components": "^0.0.6",
"@sendgrid/mail": "^7.7.0",
"@types/node": "18.15.13",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@vercel/analytics": "^1.0.0",
"antd": "^5.8.4",
"antd-img-crop": "^4.13.0",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"firebase": "^9.20.0",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"next": "13.3.0",
"react": "18.2.0",
"react-avatar": "^5.0.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-email": "^1.9.3",
"react-helmet": "^6.1.0",
"react-linkify": "^1.0.0-alpha",
"react-lottie-player": "^1.5.5",
"react-moment": "^1.1.3",
"resend": "^0.14.0",
"styled-components": "^6.0.7",
"typescript": "5.0.4"
},
"devDependencies": {
"@types/lodash-es": "^4.17.7",
"@types/react-helmet": "^6.1.6",
"@types/react-linkify": "^1.0.1",
"autoprefixer": "^10.4.14",
"husky": "^8.0.3",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.3.1",
"vercel": "^31.4.0"
}
}