-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.93 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
{
"name": "micro-frontend-email-builder",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "mmarifat<Md Minhaz Ahamed Rifat>",
"email": "[email protected]",
"url": "github.com/mmarifat"
},
"scripts": {
"dev": "cross-env NODE_ENV=development next dev -p 7100",
"build": "next build",
"start": "next start -p 7100",
"lint": "next lint",
"format": "prettier --write components/**/*.tsx pages/**/*.ts pages/**/*.tsx styles/**/*.scss",
"prepare": "husky install"
},
"dependencies": {
"@module-federation/nextjs-mf": "^6.0.1",
"antd": "^5.1.7",
"cross-env": "^7.0.3",
"googleapis": "^114.0.0",
"mongoose": "^7.0.2",
"next": "^12.3.4",
"nextjs-cors": "^2.1.2",
"nodemailer": "^6.8.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-email-editor": "^1.6.3",
"react-router-dom": "^6.8.0",
"sass": "^1.57.1",
"webpack": "^5.75.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.6",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.27",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.10",
"@types/react-email-editor": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.4",
"typescript": "^5.3.3"
},
"peerDependencies": {
"webpack": "*"
}
}