-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.04 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.04 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
65
66
67
68
69
{
"name": "codeniweather",
"version": "0.4.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-favicons": "node scripts/generate-favicons.js",
"test-env": "node scripts/test-env.js",
"test-api": "node scripts/test-api.js",
"debug-api": "node scripts/debug-api.js",
"setup": "./setup.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "node tests/scripts/run-unit-tests.js",
"test:integration": "node tests/scripts/run-integration-tests.js",
"test:e2e": "node tests/scripts/run-e2e-tests.js",
"test:all": "node tests/scripts/run-all-tests.js",
"test:forecast": "node tests/scripts/test-forecast-feature.js"
},
"dependencies": {
"@codenificient/analytics-sdk": "^1.0.0",
"@maptiler/client": "^2.5.1",
"@maptiler/sdk": "^3.7.0",
"@maptiler/weather": "^3.1.1",
"@radix-ui/react-slot": "^1.2.3",
"@types/leaflet": "^1.9.20",
"@types/node": "^20.19.14",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.0.1",
"axios": "^1.12.2",
"baseline-browser-mapping": "^2.10.8",
"caniuse-lite": "^1.0.30001779",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^8.57.1",
"eslint-config-next": "^16.1.6",
"framer-motion": "^12.37.0",
"lucide-react": "^0.294.0",
"next": "^16.1.6",
"postcss": "^8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^16",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.14",
"dotenv": "^17.2.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"jest-transform-stub": "^2.0.0",
"playwright": "^1.55.1",
"typescript": "^5.9.3"
}
}