-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "caniapply",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "prisma migrate deploy && prisma generate && tsx scraper/import.ts",
"scrape": "tsx scraper/scrape.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/credential-providers": "^3.600.0",
"@aws-sdk/s3-request-presigner": "^3.600.0",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@prisma/client": "^5.13.0",
"@types/moment": "^2.13.0",
"@types/selenium-webdriver": "^4.1.22",
"framer-motion": "^11.2.12",
"generic-pool": "^3.9.0",
"moment": "^2.30.1",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"selenium-webdriver": "^4.21.0",
"sqlite3": "^5.1.7",
"tsx": "^4.10.5",
"yaml": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.12.8",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"prisma": "^5.13.0",
"typescript": "^5"
}
}