-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "reports",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"type-check": "tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json",
"test": "npm run cypress:headless",
"cypress": "cypress open",
"cypress:headless": "cypress run --headless --browser chrome",
"cypress:headless-spec": "cypress run --headless --browser chrome --spec $SPEC",
"cypress:health": "cypress run --spec \"cypress/e2e/app-health.cy.ts\"",
"cypress:layout": "cypress run --spec \"cypress/e2e/cookie-consent.cy.ts\"",
"cypress:cookie-consent": "cypress run --spec \"cypress/e2e/cookie-consent.cy.ts\"",
"cypress:home": "cypress run --spec \"cypress/e2e/home.cy.ts\"",
"cypress:coverage": "npx nyc report --reporter=text-summary"
},
"dependencies": {
"@gsap/react": "^2.1.2",
"@next/third-parties": "^16.1.7",
"@rollbar/react": "^1.0.0",
"@vercel/analytics": "^2.0.1",
"@visx/visx": "^3.12.0",
"d3-geo": "^3.1.1",
"gsap": "^3.14.2",
"howler": "^2.2.4",
"js-cookie": "^3.0.5",
"lenis": "^1.3.19",
"next": "16.1.7",
"next-intl": "^4.8.3",
"react": "19.2.4",
"react-cookie-consent": "^10.0.1",
"react-dom": "19.2.4",
"react-hotjar": "^6.3.1",
"rollbar": "^3.1.0",
"topojson-client": "^3.1.0",
"world-atlas": "^2.0.2",
"zustand": "^5.0.12"
},
"overrides": {
"@visx/visx": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/d3-geo": "^3.1.0",
"@types/howler": "^2.2.12",
"@types/js-cookie": "^3.0.6",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/topojson-client": "^3.1.5",
"cypress": "^15.12.0",
"eslint": "^9.39.4",
"eslint-config-next": "16.1.7",
"tailwindcss": "^4",
"typescript": "^5"
}
}