-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "macebook-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.1",
"bootstrap": "^5.0.0-beta3",
"cors": "^2.8.5",
"express": "^4.17.1",
"formik": "^2.2.6",
"jsonwebtoken": "^8.5.1",
"next": "10.1.3",
"react": "17.0.2",
"react-contenteditable": "^3.3.5",
"react-dom": "17.0.2",
"sass": "^1.32.11",
"twemoji": "^13.0.2",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1"
}
}