-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "@campus-online/frontend",
"description": "unb campus-online frontend",
"homepage": "https://campus.fac.unb.br/",
"version": "0.0.0-alpha",
"private": true,
"scripts": {
"clean": "rm -rf public .cache",
"dev": "gatsby develop --port \"${PORT:-5000}\" --open -H 0.0.0.0",
"build": "gatsby build",
"postbuild": "cp src/*.css public",
"lint": "eslint './*.js' 'src' 'plugins' 'gatsby'",
"precommit": "lint-staged"
},
"lint-staged": {
"{gatsby-,src/*}*.js": [
"eslint",
"git add"
]
},
"dependencies": {
"@leonardodino/gatsby-plugin-page-creator": "^0.0.2",
"@reach/router": "^1.1.1",
"deep-map": "^1.5.0",
"gatsby": "^2.0.112",
"gatsby-plugin-lodash": "^3.0.4",
"gatsby-plugin-netlify": "^2.0.8",
"gatsby-plugin-nprogress": "^2.0.8",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-styled-components": "^3.0.5",
"gatsby-react-router-scroll": "^2.0.4",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-figure-caption": "^2.0.0",
"gatsby-remark-responsive-iframe": "^2.0.9",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-source-git": "https://github.com/stevetweeddale/gatsby-source-git",
"gatsby-transformer-remark": "^2.2.4",
"lodash": "^4.17.11",
"lru-cache": "^4.1.3",
"polished": "^2.3.3",
"prop-types": "^15.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0",
"react-window-size": "^1.2.0",
"recompose": "^0.30.0",
"styled-components": "^4.1.3",
"timesince": "^0.1.0-alpha.0",
"unist-util-visit": "^1.4.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.7.1",
"eslint": "^5.13.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"gatsby-plugin-eslint": "^2.0.4",
"gatsby-plugin-netlify-cache": "^1.0.0-beta0",
"lint-staged": "^8.1.3"
}
}