This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.5 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
{
"name": "projekt-graefekiez.berlin",
"description": "",
"version": "1.0.0",
"author": "FixMyCity <[email protected]>",
"license": "AGPL-3.0",
"keywords": [],
"private": true,
"scripts": {
"start": "gatsby develop --open",
"mobile": "gatsby develop -H 0.0.0.0",
"clean": "gatsby clean",
"cs": "npm run clean && npm run start",
"build": "gatsby build",
"serve": "gatsby serve",
"build-serve": "npm run build && npm run serve",
"bleach": "rm -rf node_modules/ && npm install && npm run cs",
"check": "npm run type-check && npm run lint && npm run format",
"type-check": "tsc --noEmit && npm run lint && npm run format",
"lint": "eslint --fix --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"prepare": "husky install && chmod +x .husky/pre-push",
"release": "gh pr create --base main --head develop --title \"Release $(date '+%Y-%m-%d')\" --body \"\"",
"updatePackages": "npx taze major --write"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@mdx-js/react": "^2.3.0",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"clsx": "^2.0.0",
"gatsby": "^5.11.0",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-manifest": "^5.11.0",
"gatsby-plugin-mdx": "^5.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-sharp": "^5.11.0",
"mapbox-gl": "^2.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.3",
"tsconfig-paths-webpack-plugin": "^4.1.0"
},
"devDependencies": {
"@types/node": "^18.17.1",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-plugin-postcss": "^6.11.0",
"husky": "^8.0.3",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
}
}