-
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.21 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.21 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": "example-app-router",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"lint": "eslint src && prettier src --check",
"test": "pnpm run test:playwright && pnpm run test:jest",
"test:playwright": "playwright test",
"test:jest": "jest",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@base-ui-components/react": "1.0.0-beta.3",
"clsx": "^2.1.1",
"next": "^15.5.0",
"next-intl": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.51.1",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.5",
"@types/react": "^19.0.0",
"autoprefixer": "^10.4.19",
"eslint": "9.11.1",
"eslint-config-next": "^15.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"prettier": "^3.3.3",
"typescript": "^5.5.3"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "none"
},
"engines": {
"node": ">=20.0.0"
}
}