-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.01 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
{
"name": "bike-trips",
"version": "0.0.0",
"private": true,
"author": "Antoine Giret",
"scripts": {
"prepare": "husky",
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix"
},
"dependencies": {
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@turf/simplify": "^6.5.0",
"framer-motion": "11.0.5",
"gatsby": "5.13.3",
"gatsby-plugin-image": "3.13.1",
"gatsby-plugin-manifest": "5.13.1",
"gatsby-plugin-sharp": "5.13.1",
"gatsby-plugin-sitemap": "6.13.1",
"gatsby-source-filesystem": "5.13.1",
"gatsby-transformer-sharp": "5.13.1",
"maplibre-gl": "4.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.0.1"
},
"devDependencies": {
"@antoine-giret/commitlint-config": "0.0.2",
"@antoine-giret/eslint-config": "0.0.2",
"@antoine-giret/prettier-config": "0.0.3",
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "12.0.0",
"husky": "9.0.10",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"typescript": "5.3.3"
},
"engines": {
"node": ">= 18.13.0",
"npm": "please-use-yarn",
"yarn": ">= 1.22.0"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}