-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.56 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
109
110
111
112
{
"name": "gatsby-starter-ts",
"description": "A TypeScript starter for Gatsby that includes all you need to build amazing projects",
"version": "1.0.0",
"private": true,
"author": "João Pedro Schmitz <hey@joaopedro.dev> (https://joaopedro.dev)",
"license": "MIT",
"keywords": [
"gatsby",
"starter",
"typescript"
],
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"test": "jest",
"commit": "cz"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@emailjs/browser": "3.7.0",
"@reach/router": "1.3.4",
"@types/prop-types": "15.7.5",
"aos": "2.3.4",
"babel-plugin-styled-components": "2.0.7",
"gatsby": "4.24.1",
"gatsby-image": "3.11.0",
"gatsby-omni-font-loader": "2.0.2",
"gatsby-plugin-breakpoints": "1.3.7",
"gatsby-plugin-html-attributes": "1.0.5",
"gatsby-plugin-image": "2.24.0",
"gatsby-plugin-manifest": "4.24.0",
"gatsby-plugin-react-i18next": "2.0.4",
"gatsby-plugin-sharp": "4.24.0",
"gatsby-plugin-styled-components": "5.24.0",
"gatsby-plugin-use-query-params": "1.0.1",
"gatsby-source-filesystem": "4.24.0",
"gatsby-transformer-remark": "5.24.0",
"gatsby-transformer-sharp": "4.24.0",
"i18next": "21.9.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-hook-form": "7.37.0",
"react-i18next": "11.18.6",
"react-icons": "4.4.0",
"react-scroll-parallax": "3.3.1",
"react-scrollspy-nav": "1.3.0",
"styled-components": "5.3.6",
"tsconfig-paths-webpack-plugin": "4.0.0",
"use-query-params": "2.1.1"
},
"devDependencies": {
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@testing-library/dom": "8.18.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/aos": "3.0.4",
"@types/gatsby-plugin-breakpoints": "1.3.2",
"@types/jest": "29.1.1",
"@types/node": "16.11.62",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"babel-jest": "29.1.2",
"babel-preset-gatsby": "2.24.0",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.4",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "29.1.2",
"jest-environment-jsdom": "29.1.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}