-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 KB
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
{
"name": "gatsby-starter-antoine",
"description": "My opinionated Gatsby.js starter template",
"license": "MIT",
"version": "1.0.0",
"keywords": [
"gatsby",
"starter",
"gatsby.js",
"typescript",
"template"
],
"author": {
"name": "Antoine Rousseau",
"email": "antoine@rousseau.im",
"url": "https://antoine.rousseau.im"
},
"repository": {
"type": "git",
"url": "https://github.com/antoinerousseau/gatsby-starter-antoine"
},
"bugs": {
"url": "https://github.com/antoinerousseau/gatsby-starter-antoine/issues"
},
"scripts": {
"develop": "gatsby clean && gatsby develop",
"lint": "tsc --skipLibCheck && eslint --fix \"**/*.{ts,tsx,js,jsx,json}\"",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"build": "gatsby clean && gatsby build",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \" && exit 1",
"clean": "gatsby clean"
},
"engines": {
"node": ">=10.12.0"
},
"dependencies": {
"@bugsnag/js": "^7.0.0",
"@bugsnag/plugin-react": "^7.0.0",
"@types/node": "^14.14.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-helmet": "^6.0.0",
"@types/standard-http-error": "^2.0.0",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-plugin-styled-components": "^1.10.7",
"dotenv": "^8.2.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.2",
"gatsby": "^2.20.23",
"gatsby-image": "^2.3.3",
"gatsby-plugin-google-analytics": "^2.2.3",
"gatsby-plugin-manifest": "^2.3.4",
"gatsby-plugin-react-helmet": "^3.2.3",
"gatsby-plugin-sharp": "^2.5.5",
"gatsby-plugin-styled-components": "^3.2.2",
"gatsby-plugin-typescript": "^2.3.2",
"gatsby-source-filesystem": "^2.2.3",
"gatsby-transformer-sharp": "^2.4.5",
"prettier": "^2.0.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.0.0",
"standard-http-error": "^2.0.1",
"styled-components": "^5.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"whatwg-fetch": "^3.4.1"
}
}