-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "polzon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "eslint",
"serve:static": "http-server out -p 3000 -c-1",
"test:ct": "playwright test -c playwright-ct.config.ts",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"next": "^16.2.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"ua-parser-js": "^2.0.9"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.59.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^10.2.0",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"http-server": "^14.1.1",
"prettier": "^3.8.3",
"tailwindcss": "^4",
"typescript": "^6"
}
}