-
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.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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": "qards.queue4",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:clean": "rm -rf .next && next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress:open",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:run",
"e2e:ci": "start-server-and-test build:start http://localhost:3000 cypress:run",
"build:start": "npm run build && npm run start"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"next": "15.3.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/cypress": "^0.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cypress": "^14.5.3",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"start-server-and-test": "^2.0.12",
"tailwindcss": "^4",
"typescript": "^5"
}
}