This repository has been archived by the owner on May 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.62 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
{
"private": true,
"name": "fcc-rocks",
"description": "an unofficial fan website of the freeCodeCamp.org community",
"author":
"Mrugesh Mohapatra <[email protected]> (https://raisedadead.com/)",
"license": "BSD-3-Clause",
"homepage": "https://github.com/rd-hub/freeCodeCamp-rocks-website#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rd-hub/freeCodeCamp-rocks-website.git"
},
"bugs": {
"url": "https://github.com/rd-hub/freeCodeCamp-rocks-website/issues"
},
"version": "0.1.0",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"precommit": "lint-staged",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"dev": "gatsby develop",
"develop": "gatsby develop",
"lint": "lint-staged",
"start": "gatsby build && gatsby serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"dependencies": {
"css-wipe": "^4.3.0",
"gatsby": "^1.9.76",
"gatsby-link": "^1.6.8",
"gatsby-plugin-google-analytics": "^1.0.4",
"gatsby-plugin-manifest": "^1.0.4",
"gatsby-plugin-netlify": "^1.0.4",
"gatsby-plugin-offline": "^1.0.4",
"gatsby-plugin-preact": "^1.0.3",
"gatsby-plugin-react-helmet": "^1.0.3",
"gatsby-plugin-sharp": "^1.6.2",
"gatsby-remark-images": "^1.5.4",
"gatsby-remark-prismjs": "^1.2.1",
"gatsby-remark-responsive-iframe": "^1.4.3",
"gatsby-remark-smartypants": "^1.4.3",
"gatsby-source-filesystem": "^1.4.3",
"gatsby-transformer-remark": "^1.7.1",
"gatsby-transformer-sharp": "^1.6.1",
"isemail": "^3.0.0",
"joi-browser": "^10.6.1",
"lodash": "^4.15.0",
"react-css-grid": "^2.0.0-0",
"react-enhanced-form": "^1.4.5",
"react-geomicons": "^2.1.0",
"react-modal": "^2.3.2",
"react-redux": "^5.0.6",
"redux-modal": "^1.5.3",
"reset-css": "^2.2.1",
"styled-reset": "^0.1.2",
"styled-system": "^1.0.8"
},
"devDependencies": {
"@commitlint/cli": "^5.2.5",
"@commitlint/config-conventional": "^5.2.3",
"babel-plugin-styled-components": "^1.2.0",
"commitizen": "^2.9.6",
"cz-customizable": "^5.2.0",
"gh-pages": "^0.12.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "1.9.2",
"prettier-package-json": "^1.4.0"
},
"engines": {
"node": ">8"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"],
"package.json": ["prettier-package-json --write", "git add"]
}
}