-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "commit-cheatsheet",
"version": "1.1.0",
"description": "Help to follow a commit convention",
"main": "index.js",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"build:env": "env-cmd gatsby build",
"serve": "gatsby serve",
"format": "prettier --write **/*.js",
"lint": "eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zombispormedio/commit-cheatsheet.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Zombispormedio/commit-cheatsheet/issues"
},
"homepage": "https://github.com/Zombispormedio/commit-cheatsheet#readme",
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"emotion-theming": "^10.0.10",
"gatsby": "^2.4.2",
"gatsby-plugin-emotion": "^4.0.6",
"gatsby-plugin-google-analytics": "^2.0.19",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-offline": "^2.1.0",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sitemap": "^2.1.0",
"gatsby-plugin-typography": "^2.2.13",
"gatsby-source-filesystem": "^2.0.33",
"gatsby-transformer-json": "^2.1.11",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-toastify": "^5.1.0",
"react-typography": "^0.16.19",
"typography": "^0.16.19"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"env-cmd": "^9.0.1",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"prettier": "1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"eslint",
"git add"
]
}
}
}