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
|
{
"name": "myapps",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "NODE_ENV=production next start",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"bcryptjs": "^2.4.3",
"jszip": "^3.7.1",
"mongoose": "^5.12.13",
"next": "^11.1.2",
"next-iron-session": "4.1.7",
"nodemailer": "^6.6.1",
"prop-types": "15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.35.1",
"swr": "^1.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.2",
"eslint": "7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1"
}
}
|