-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.88 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
{
"name": "gatsby-starter-default",
"private": true,
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write .",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 0"
},
"dependencies": {
"@mdx-js/mdx": "1.6.21",
"@mdx-js/react": "1.6.21",
"@rebass/forms": "4.0.6",
"@rebass/preset": "4.0.5",
"deep-map": "2.0.0",
"gatsby": "2.27.4",
"gatsby-background-image": "1.3.1",
"gatsby-image": "2.6.0",
"gatsby-plugin-manifest": "2.7.0",
"gatsby-plugin-mdx": "1.5.0",
"gatsby-plugin-offline": "3.5.0",
"gatsby-plugin-pinterest": "3.2.2",
"gatsby-plugin-react-helmet": "3.5.0",
"gatsby-plugin-robots-txt": "1.5.3",
"gatsby-plugin-sharp": "2.9.1",
"gatsby-plugin-typegen": "^2.2.1",
"gatsby-plugin-typescript": "^2.7.0",
"gatsby-remark-copy-linked-files": "2.5.0",
"gatsby-remark-images": "3.6.0",
"gatsby-remark-reading-time": "1.1.0",
"gatsby-remark-relative-source": "0.0.4",
"gatsby-source-filesystem": "2.6.1",
"gatsby-source-instagram": "0.9.0",
"gatsby-source-wordpress": "3.6.1",
"gatsby-transformer-json": "2.6.0",
"gatsby-transformer-sharp": "2.7.0",
"lint-staged": "^10.5.2",
"lodash": "^4.17.20",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-helmet": "6.1.0",
"react-icons": "4.1.0",
"react-share": "4.3.1",
"rebass": "4.0.7",
"slash": "3.0.0",
"theme-ui": "0.3.4",
"typescript": "4.1.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "14.14.10",
"@types/react": "17.0.0",
"@types/rebass": "4.0.7",
"@types/rebass__forms": "4.0.4",
"@types/theme-ui": "0.3.7",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"prettier": "^2.2.1",
"ts-node": "^9.0.0"
},
"prettier": {
"trailingComma": "all",
"semi": true,
"singleQuote": true,
"printWidth": 100,
"proseWrap": "always",
"tabWidth": 2
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}