-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "lncm-web",
"description": "LNCM Website",
"license": "MIT",
"scripts": {
"start": "npm run develop",
"develop": "gatsby develop",
"build": "rm -rf public && gatsby build && echo 'lncm.github.io' > ./public/CNAME",
"serve": "gatsby serve",
"clean": "rm -rf .cache public",
"deploy": "gh-pages -d public -b master"
},
"dependencies": {
"gatsby": "^2.32.13",
"gatsby-image": "^2.0.15",
"gatsby-plugin-eslint": "^2.0.1",
"gatsby-plugin-favicon": "^3.1.4",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.0.1",
"gatsby-plugin-sharp": "^2.0.7",
"gatsby-remark-autolink-headers": "^4.7.0",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.4",
"gatsby-remark-relative-images": "^0.2.0",
"gatsby-source-filesystem": "^2.0.4",
"gatsby-transformer-remark": "^2.1.7",
"gatsby-transformer-sharp": "^2.1.4",
"gatsby-transformer-toml": "^2.1.1",
"gh-pages": "^4.0.0",
"node-sass": "^7.0.3",
"normalize.css": "^8.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"toml-loader": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
}
}