-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.88 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.88 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "reactjsph-website",
"private": true,
"description": "ReactJS PH website",
"version": "0.1.0",
"author": "ReactJS PH <reactjs.ph@yahoo.com>",
"dependencies": {
"@emotion/core": "^10.0.16",
"@emotion/styled": "^10.0.15",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@reach/dialog": "^0.8.6",
"@react-hook/intersection-observer": "^2.0.10",
"@rebass/preset": "^4.0.3",
"babel-eslint": "^10.1.0",
"csshake": "^1.5.3",
"date-fns": "^2.10.0",
"emotion-reset": "^2.0.2",
"emotion-theming": "^10.0.14",
"fabric": "3.6.2",
"formik": "^2.1.3",
"gatsby": "^2.24.80",
"gatsby-image": "^2.1.2",
"gatsby-plugin-emotion": "^4.1.2",
"gatsby-plugin-env-variables": "^2.0.0",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-offline": "^2.1.1",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.1.3",
"gatsby-source-filesystem": "^2.0.38",
"gatsby-transformer-json": "2.11.0",
"gatsby-transformer-sharp": "^2.1.21",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-error-boundary": "^3.0.2",
"react-google-recaptcha": "^2.0.1",
"react-helmet": "^5.2.1",
"rebass": "^4.0.3",
"yup": "^0.28.1"
},
"devDependencies": {
"eslint": "6.2.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"gh-pages": "^2.1.1",
"husky": "^3.0.4",
"inquirer": "^8.2.0",
"joi": "^17.2.1",
"lint-staged": "^9.2.3",
"prettier": "^1.17.1",
"prettier-eslint-cli": "^5.0.0"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
"start": "yarn run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --fix",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"validate": "lint-staged",
"enlist": "node scripts/add-dev-board.js"
},
"repository": {
"type": "git",
"url": "https://github.com/reactph/reactjsph-website"
},
"bugs": {
"url": "https://github.com/reactph/reactjsph-website/issues"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier-eslint --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "node ./scripts/pre-commit",
"pre-push": "node ./scripts/pre-push"
}
}
}