-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.97 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
{
"name": "devux",
"version": "1.0",
"description": "DevUx landing, manifest, toolbox",
"main": "index.js",
"scripts": {
"build": "cleandir ./.cache && gatsby build",
"develop": "cleandir ./.cache && gatsby develop -p 8009",
"serve": "gatsby serve -p 8009",
"start": "yarn develop",
"lint": "eslint ./src",
"setup": "node ./bin/setup.js"
},
"author": "Yu Ling CHENG",
"dependencies": {
"clean-dir": "^1.0.3",
"contentful": "^7.14",
"dotenv": "^8.2.0",
"envfile": "^4.5.0",
"gatsby": "^2.19",
"gatsby-plugin-gdpr-cookies": "^1.0.6",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.2",
"gatsby-plugin-netlify": "^2.1.0",
"gatsby-plugin-offline": "^3.0.36",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-styled-components": "^3.0.5",
"gatsby-source-contentful": "^2.1",
"gatsby-transformer-remark": "^2.2.4",
"inquirer": "^7.0.6",
"lodash.groupby": "^4.6.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-cookie-consent": "^3.0.0",
"react-dom": "^16.7.0",
"react-fontawesome": "^1.6.1",
"react-headroom": "^3.0.0",
"react-helmet": "^5.2.0",
"react-markdown": "^4.0.3",
"react-reveal": "^1.2.2",
"react-scroll-section": "^1.3.0",
"react-swipeable": "^5.5.1",
"react-text-loop": "^2.0.1",
"react-tippy": "^1.2.2",
"rebass": "^3.0.0",
"styled-components": "^5.0"
},
"devDependencies": {
"chalk": "^3",
"contentful-import": "^7.7",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}