forked from nobeeinc/frontend-interview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "nobee-fe-take-home-interview",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"schema": "./src/database/schema.prisma"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.6.0",
"@mui/material": "^5.0.0",
"@prisma/client": "^3.0.2",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.1",
"cookie": "^0.4.1",
"formik": "^2.2.9",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"next": "^12.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.4.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.9.2",
"@types/react": "17.0.21",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"autoprefixer": "^10.3.4",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"postcss": "^8.3.6",
"prettier": "^2.4.1",
"prisma": "^3.0.2",
"tailwindcss": "^2.2.15",
"type-fest": "^2.3.3",
"typescript": "4.4.3"
}
}