-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (82 loc) · 2.49 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
{
"name": "international-night-2019",
"private": true,
"description": "international night 2019",
"version": "0.1.0",
"author": "Dick Wyn Yong <dickwyn@outlook.com>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"@typeform/embed": "^0.14.1",
"figlet": "^1.2.4",
"gatsby": "^2.13.44",
"gatsby-image": "^2.2.7",
"gatsby-plugin-google-analytics": "^2.1.16",
"gatsby-plugin-manifest": "^2.2.20",
"gatsby-plugin-netlify-cms": "^4.1.6",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-sass": "^2.1.4",
"gatsby-plugin-sharp": "^2.2.28",
"gatsby-plugin-typography": "^2.3.14",
"gatsby-source-filesystem": "^2.1.6",
"gatsby-transformer-remark": "^2.6.26",
"gatsby-transformer-sharp": "^2.2.20",
"gh-pages": "^3.1.0",
"moment": "^2.24.0",
"netlify-cms-app": "^2.9.7",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-countdown-now": "^2.1.1",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-iframe": "^1.8.0",
"react-instagram-embed": "^1.5.0",
"react-typography": "^0.16.19",
"typography": "^0.16.19",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-loader": "^3.0.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",
"gatsby-plugin-eslint": "^2.0.5",
"husky": "^3.0.5",
"prettier": "^1.18.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://www.gatsbyjs.org/docs/unit-testing/\"",
"lint": "eslint src/**/*.js",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn lint",
"pre-push": "yarn test && yarn lint"
}
}
}