-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "job-bank",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"format": "eslint --fix . && prettier --write .",
"jest": "jest e2e",
"coverage": "jest --coverage"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@heroicons/react": "^2.1.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@sendgrid/mail": "^8.1.3",
"@stripe/stripe-js": "^3.4.0",
"@tailwindcss/forms": "^0.5.7",
"auth0": "^4.4.0",
"axios": "^1.6.8",
"babel": "^6.23.0",
"babel-plugin-istanbul": "^6.1.1",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"lucide-react": "^0.378.0",
"mongoose": "^8.3.4",
"next": "14.2.3",
"node-cron": "^3.0.3",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"react": "^18",
"react-dom": "^18",
"react-quill": "^2.0.0",
"react-tooltip": "^5.26.4",
"stripe": "^15.6.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.44.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/puppeteer": "^7.0.4",
"@types/react": "18.3.3",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-playwright-preset": "^4.0.0",
"lint-staged": "^15.2.2",
"playwright": "^1.44.1",
"postcss": "^8",
"prettier": "3.2.5",
"puppeteer": "^22.10.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.3",
"typescript": "^5.4.5"
}
}