-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "reply-ai-refactor",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint || eslint . --ext .ts,.tsx --max-warnings=0",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write .",
"test:e2e": "playwright test",
"postinstall": "npx playwright install --with-deps || true",
"setup": "npm install && npx playwright install --with-deps",
"test:coverage": "jest --coverage"
},
"dependencies": {
"next": "14.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"lucide-react": "^0.268.0",
"sonner": "^0.7.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "20.4.2",
"@types/react": "18.2.21",
"@types/jest": "29.5.3",
"jest": "29.6.1",
"ts-jest": "29.1.0",
"@testing-library/react": "14.0.0",
"playwright": "1.44.0",
"typescript": "5.5.6",
"eslint": "8.45.0",
"eslint-config-next": "14.0.0",
"prettier": "2.8.8",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.11.0",
"@playwright/test": "1.44.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
}
}