-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "admin-panel",
"private": true,
"scripts": {
"dev": "dotenv -e .env.production -- next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"e2e": "cypress open",
"e2e:headless": "cypress run",
"test": "dotenv -e .env.test jest --watch",
"test:cov": "jest --coverage",
"migrate:dev": "dotenv -e .env.development -- npx prisma migrate dev",
"migrate:prod": "dotenv -e .env.production -- npx prisma migrate deploy"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@prisma/client": "3.13.0",
"@testing-library/user-event": "^14.1.1",
"daisyui": "^2.14.3",
"firebase": "^9.7.0",
"firebase-admin": "^10.1.0",
"next": "12.0.10",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.30.0",
"react-select": "^5.3.1",
"react-toastify": "^8.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/node": "17.0.16",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"autoprefixer": "^10.4.7",
"cypress": "^9.4.1",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.13",
"prettier": "^2.5.1",
"prisma": "^3.13.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.5"
}
}