-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "fictshop",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"traffic": "USE_PRODUCTION=true pnpm exec playwright test --project chromium --repeat-each=20000 --workers=30",
"traffic:dev": "pnpm exec playwright test --project chromium",
"traffic-ui": "USE_PRODUCTION=true HAPPY_PATH=true pnpm exec playwright test --ui",
"traffic-ui:dev": "HAPPY_PATH=true pnpm exec playwright test --ui",
"generate-images": "tsx src/scripts/generate-images.ts"
},
"dependencies": {
"@statsig/react-bindings": "^3.8.3",
"@statsig/web-analytics": "^3.8.3",
"next": "15.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.49.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"postcss": "^8",
"prettier": "^3.4.2",
"prettier-plugin-import-sort": "^0.0.7",
"replicate": "^1.0.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5"
}
}