-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.52 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
{
"name": "gatsby-starter-typescript",
"private": true,
"description": "Minimal gatsby typescript starter.",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint --ext .tsx,.ts ./src",
"lint-fix": "eslint --fix --ext .tsx,.ts ./src",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@react-icons/all-files": "^4.1.0",
"@types/classnames": "^2.2.11",
"@types/marked": "^1.2.1",
"@types/react-icons": "^3.0.0",
"@types/react-recaptcha": "^2.3.3",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.0",
"babel-plugin-styled-components": "^1.12.0",
"classnames": "^2.2.6",
"color": "^3.1.3",
"dotenv": "^8.2.0",
"gatsby": "^2.30.1",
"gatsby-plugin-apollo": "^3.0.2",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-layout": "^1.8.0",
"gatsby-plugin-manifest": "^2.10.0",
"gatsby-plugin-offline": "^3.8.0",
"gatsby-plugin-react-helmet": "^3.8.0",
"gatsby-plugin-styled-components": "^3.9.0",
"gatsby-source-graphql": "^2.12.0",
"marked": "^1.2.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-form": "git+https://github.com/ramilamparo/react-form.git",
"react-google-recaptcha-v3": "^1.7.1",
"react-helmet": "^6.1.0",
"react-typography": "^0.16.19",
"styled-components": "^5.2.1",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-eslint": "^2.0.8",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}