-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 KB
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
62
63
64
65
{
"name": "oshere",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "prettier --check .",
"prettier:list": "prettier --list-different .",
"prettier:write": "prettier --write .",
"prepare": "husky install",
"precommit": "lint-staged",
"test": "jest",
"jest": "jest --watch",
"cy:open": "cypress open"
},
"lint-staged": {
"*.{css,js,json,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@heroicons/react": "^2.0.13",
"@next-auth/firebase-adapter": "^1.0.3",
"@next/font": "13.1.1",
"@splidejs/react-splide": "^0.7.12",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"axios": "^1.2.2",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1",
"firebase": "^9.15.0",
"framer-motion": "^9.0.1",
"next": "13.1.1",
"next-auth": "^4.18.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-player": "^2.11.0",
"sharp": "^0.31.3",
"swr": "^2.0.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"autoprefixer": "^10.4.13",
"cypress": "^12.4.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"next-router-mock": "^0.9.1-beta.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4"
}
}