-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.32 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "amazing_stadiums",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings=0",
"postinstall": "husky install",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"test": "jest",
"test:watch": "yarn test --watch",
"codegen": "graphql-codegen --config codegen.ts"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --passWithNoTests --bail"
]
},
"dependencies": {
"@next/font": "13.0.7",
"@styled-icons/evaicons-outline": "^10.46.0",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"leaflet": "1.7.1",
"next": "12.2.0",
"next-pwa": "^5.6.0",
"next-seo": "^5.15.0",
"next-sitemap": "^3.1.44",
"nextjs-progressbar": "^0.0.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-leaflet": "4.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@graphql-codegen/add": "^3.2.3",
"@graphql-codegen/cli": "2.16.1",
"@graphql-codegen/client-preset": "1.2.3",
"@graphql-codegen/typescript": "^2.8.5",
"@graphql-codegen/typescript-operations": "^2.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/leaflet": "^1.9.0",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-jest": "^29.3.1",
"babel-plugin-styled-components": "^2.0.7",
"esbuild": "^0.16.13",
"esbuild-jest": "^0.5.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.1.0",
"prettier": "2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}