-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.77 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
49
{
"name": "web",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint app components e2e hooks i18n i18n.ts lib next.config.ts playwright.config.ts playwright.production.config.ts --max-warnings 0",
"check-types": "tsc --noEmit",
"test": "bun test ./lib ./app ./components ./hooks",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test e2e/ground-code-share.spec.ts --grep @smoke",
"test:e2e:layout": "playwright test e2e/ground-code-share.spec.ts --grep @layout",
"test:e2e:full": "playwright test",
"test:e2e:prod": "playwright test --config=playwright.production.config.ts",
"qa:visual": "playwright test e2e/visual-qa.spec.ts --config=playwright.production.config.ts",
"pages:build": "npx @cloudflare/next-on-pages && node scripts/patch-pages-routes.mjs",
"preview": "pnpm run pages:build && wrangler pages dev",
"deploy": "pnpm run pages:build && wrangler pages deploy"
},
"dependencies": {
"@react-google-maps/api": "^2.20.8",
"@repo/ui": "workspace:*",
"@types/google.maps": "^3.64.1",
"cesium": "^1.141.0",
"next": "15.5.18",
"next-intl": "^4.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.6.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.16",
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.56.1",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.18",
"tailwindcss": "^4",
"typescript": "^5"
}
}