-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.84 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "radwege-check.de",
"description": "The website for https://radwege-check.de",
"version": "1.0.0",
"author": "FixMyCity <hello@fixmycity.de>",
"license": "AGPL-3.0",
"keywords": [],
"scripts": {
"start": "gatsby develop --open",
"profile": "npm run start --profile",
"mobile": "gatsby develop -H 0.0.0.0",
"cs": "npm run clean && npm run start",
"build": "gatsby build",
"serve": "gatsby serve",
"build-serve": "npm run build && npm run serve",
"clean": "gatsby clean",
"bleach": "rm -rf node_modules/ && npm install && npm run cs",
"check": "npm run type-check && npm run lint && npm run format && npm run test",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"test": "DISABlE_DEBUG_FOR_JEST=true jest",
"test:watch": "DISABlE_DEBUG_FOR_JEST=true jest --watch",
"prepare": "husky install",
"updatePackages:minor": "npx taze minor --write",
"updatePackages:major": "npx taze major --exclude query-string,use-query-params --write && echo \"Update major packages except for query-string and use-query-params, which need to stay\"",
"release": "gh pr create --base main --head develop --title \"Release $(date '+%Y-%m-%d')\" --body \"\""
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@fontsource/barlow": "5.0.5",
"@fontsource/barlow-condensed": "5.0.5",
"@fontsource/barlow-semi-condensed": "5.0.5",
"@headlessui/react": "1.7.15",
"@heroicons/react": "2.0.18",
"@popperjs/core": "2.11.8",
"@tailwindcss/forms": "0.5.4",
"@tailwindcss/typography": "0.5.9",
"clsx": "2.0.0",
"d3-scale": "4.0.2",
"embla-carousel-react": "7.1.0",
"fs-extra": "11.1.1",
"gatsby": "5.11.0",
"gatsby-plugin-image": "3.11.0",
"gatsby-plugin-manifest": "5.11.0",
"gatsby-plugin-matomo": "0.16.0",
"gatsby-plugin-react-helmet": "6.11.0",
"gatsby-plugin-react-svg": "3.3.0",
"gatsby-plugin-sharp": "5.11.0",
"gatsby-plugin-sitemap": "6.11.0",
"gatsby-source-filesystem": "5.11.0",
"gatsby-transformer-csv": "5.11.0",
"itemsjs": "2.1.21",
"query-string": "7.1.3",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-helmet": "6.1.0",
"react-intl": "6.4.4",
"react-popper": "2.3.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"use-query-params": "1.2.3",
"zustand": "4.3.9"
},
"devDependencies": {
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@parcel/namer-default": "2.9.3",
"@tailwindcss/forms": "0.5.4",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "5.16.5",
"@types/jest": "29.5.3",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"autoprefixer": "^10.4.14",
"babel-jest": "29.6.1",
"babel-preset-gatsby": "3.11.0",
"eslint": "8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-formatjs": "4.10.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"gatsby-plugin-postcss": "6.11.0",
"identity-obj-proxy": "^3.0.0",
"jest": "29.6.1",
"jest-environment-jsdom": "29.6.1",
"postcss": "^8.4.26",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "0.4.1",
"tailwindcss": "3.3.3",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
}
}