-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.15 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": "fascinating-places",
"description": "A project to show the most riveting places in the entire world.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"prepare": "husky install",
"test": "jest --transformIgnorePatterns \"node_modules/(?!react-leaflet|@react-leaflet)\"",
"test:watch": "yarn test --watch",
"typecheck": "tsc --project tsconfig.json --noEmit",
"codegen": "graphql-codegen --config codegen.yml"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"@styled-icons/evaicons-outline": "^10.34.0",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"leaflet": "^1.9.3",
"next": "latest",
"next-pwa": "^5.4.4",
"next-seo": "^4.28.1",
"next-sitemap": "^1.6.203",
"nextjs-progressbar": "^0.0.16",
"react": "latest",
"react-dom": "latest",
"react-leaflet": "^4.2.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.5",
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "2.3.0",
"@graphql-codegen/typescript": "2.4.1",
"@graphql-codegen/typescript-operations": "2.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.5.1",
"@types/leaflet": "^1.9.3",
"@types/react": "^18.2.6",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "8.5.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-styled-components": "^7.0.8",
"lint-staged": "^12.1.3",
"prettier": "2.5.1",
"typescript": "^4.5.4"
},
"packageManager": "[email protected]"
}