-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "next-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --verbose",
"test:coverage": "jest --coverage --verbose",
"test:watch": "jest --watch --verbose",
"test:e2e": "npx playwright test __tests__/e2e/ --config=__tests__/e2e/playwright.config.ts",
"test:e2e:ui": "npx playwright test __tests__/e2e/ --config=__tests__/e2e/playwright.config.ts --ui"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@prisma/client": "^5.1.1",
"@types/node": "^20.5.0",
"axios": "^1.7.7",
"bootstrap": "^5.3.1",
"cookie": "^0.7.0",
"dotenv": "^16.3.1",
"draft-js": "^0.11.7",
"eslint": "8.47.0",
"eslint-config-next": "13.4.16",
"moment": "^2.29.4",
"next": "13.5.7",
"react": "18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.46.1",
"react-markdown": "^8.0.7",
"sharp": "^0.33.5",
"typescript": "5.1.6"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@playwright/test": "^1.48.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@types/draft-js": "^0.11.12",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-google-recaptcha": "^2.1.5",
"@types/testing-library__jest-dom": "^6.0.0",
"@vercel/analytics": "^1.0.2",
"axios-mock-adapter": "^1.22.0",
"babel-jest": "^29.6.2",
"ignore-loader": "^0.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.6.2",
"jest-playwright": "^0.0.1",
"playwright": "^1.48.0",
"prisma": "^5.1.1",
"ts-jest": "^29.1.1"
}
}