-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
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
{
"name": "pogoda",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.x"
},
"author": {
"name": "Andrew Kowalczyk"
},
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test": "jest",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/client": "^4.7.1",
"@sentry/nextjs": "^7.30.0",
"bulma": "^0.9.4",
"chroma-js": "^2.4.2",
"classnames": "^2.2.6",
"date-fns": "^2.12.0",
"date-fns-tz": "^1.3.7",
"lucide-react": "^0.105.0-alpha.4",
"next": "^14.0.4",
"node-fetch": "^2.6.7",
"query-string": "^7.1.3",
"react": "^18.2.0",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.2.0",
"react-moon": "^2.0.2",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"styled-components": "^5.3.6",
"swr": "^2.0.0",
"weathericons": "^2.1.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/all-the-cities": "3.1.0",
"@types/chroma-js": "2.1.4",
"@types/jest": "^29.2.4",
"@types/lodash.debounce": "4.0.7",
"@types/node": "18.11.12",
"@types/node-fetch": "2.6.2",
"@types/react": "18.0.26",
"@types/react-transition-group": "^4.4.5",
"@types/styled-components": "^5.1.26",
"all-the-cities": "^3.1.0",
"eslint": "^8.47.0",
"eslint-config-next": "^14.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prisma": "^4.7.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}