-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.92 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-conference",
"private": true,
"description": "A Gatsby Starter for building conference website",
"version": "1.0.1",
"author": "[email protected]",
"dependencies": {
"@testing-library/cypress": "^7.0.1",
"gatsby": "^2.24.61",
"gatsby-image": "^2.4.19",
"gatsby-plugin-catch-links": "^2.3.12",
"gatsby-plugin-manifest": "^2.4.30",
"gatsby-plugin-offline": "^3.2.28",
"gatsby-plugin-react-helmet": "^3.3.11",
"gatsby-plugin-sass": "^2.3.13",
"gatsby-plugin-sharp": "^2.6.36",
"gatsby-remark-copy-linked-files": "^2.3.15",
"gatsby-remark-images": "^3.3.30",
"gatsby-remark-prismjs": "^3.5.13",
"gatsby-remark-responsive-iframe": "^2.4.14",
"gatsby-remark-smartypants": "^2.3.11",
"gatsby-source-filesystem": "^2.3.30",
"gatsby-transformer-remark": "^2.8.35",
"gatsby-transformer-sharp": "^2.5.15",
"gh-pages": "^3.1.0",
"jquery": "^3.5.1",
"node-sass": "^4.14.1",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-router": "^5.2.0",
"react-uuid": "^1.0.2",
"react-waypoint": "^9.0.3",
"bootstrap": "^4.5.2"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-brands-svg-icons": "5.14.0",
"@fortawesome/free-solid-svg-icons": "5.14.0",
"@fortawesome/react-fontawesome": "0.1.11",
"animate.css": "4.1.0",
"babel-eslint": "^10.1.0",
"cypress": "^5.4.0",
"emergence.js": "^1.1.2",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"font-awesome": "4.7.0",
"gatsby-link": "^2.4.14",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"modern-normalize": "0.7.0",
"prettier": "2.1.1",
"prismjs": "^1.21.0"
},
"keywords": [
"gatsby",
"conference-website"
],
"license": "MIT",
"scripts": {
"dev": "gatsby develop -H 0.0.0.0 -p 8000",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"cy:open": "cypress open"
},
"repository": {
"type": "git",
"url": "https://github.com/vu-luong/gatsby-starter-conference"
},
"bugs": {
"url": "https://github.com/vu-luong/gatsby-starter-conference/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)": [
"prettier --write"
]
}
}