-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.54 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
{
"name": "pauls-gatsby-starter",
"private": true,
"description": "My Starter for Gatsby",
"version": "0.1.0",
"author": "Paul O'Shea <osheapaulfe@gmail.com>",
"dependencies": {
"@emotion/react": "^11.1.2",
"@emotion/styled": "^11.0.0",
"gatsby": "^2.28.1",
"gatsby-image": "^2.7.0",
"gatsby-plugin-emotion": "^5.0.0",
"gatsby-plugin-manifest": "^2.8.0",
"gatsby-plugin-offline": "^3.2.2",
"gatsby-plugin-react-helmet": "^3.6.0",
"gatsby-plugin-sharp": "^2.10.1",
"gatsby-plugin-typography": "^2.8.0",
"gatsby-remark-images": "^3.7.0",
"gatsby-remark-prismjs": "^3.9.0",
"gatsby-source-filesystem": "^2.7.0",
"gatsby-transformer-remark": "^2.12.0",
"gatsby-transformer-sharp": "^2.8.0",
"prismjs": "^1.22.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-typography": "^0.16.19",
"typography": "^0.16.19"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.5.0",
"@types/jest": "^26.0.18",
"@types/node": "^14.14.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.0.0",
"@types/typography": "^0.16.3",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.8.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"gatsby-plugin-ts-config": "^1.1.5",
"gatsby-plugin-typescript": "^2.8.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/poshea48/gatsby-TS-starter"
}
}