-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
{
"name": "react-union.org",
"private": true,
"version": "0.0.1",
"author": "Lukas Sulik <[email protected]>",
"contributors": [
"Tomas Konrady <[email protected]>",
"Lukas Sulik <[email protected]>"
],
"repository": "https://github.com/lundegaard/react-union",
"license": "UNLICENSED",
"dependencies": {
"gatsby": "^1.9.273",
"gatsby-link": "^1.6.7",
"gatsby-plugin-catch-links": "^1.0.4",
"gatsby-plugin-google-fonts": "0.0.4",
"gatsby-plugin-gtag": "^1.0.3",
"gatsby-plugin-no-sourcemaps": "^1.0.5",
"gatsby-plugin-nprogress": "^1.0.2",
"gatsby-plugin-offline": "^1.0.3",
"gatsby-plugin-react-helmet": "2.0.11",
"gatsby-plugin-sharp": "^1.6.1",
"gatsby-plugin-sitemap": "^1.2.1",
"gatsby-plugin-styled-components": "^2.0.2",
"gatsby-remark-autolink-headers": "^1.4.3",
"gatsby-remark-copy-linked-files": "^1.5.1",
"gatsby-remark-images": "^1.5.3",
"gatsby-remark-prismjs": "2.0.4",
"gatsby-remark-responsive-iframe": "^1.4.2",
"gatsby-source-filesystem": "^1.4.2",
"gatsby-transformer-remark": "^1.7.0",
"grid-styled": "^4.2.0",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"ramda": "^0.25.0",
"ramda-extension": "^0.3.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.1.3",
"react-icons": "^2.2.7",
"styled-components": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "8.0.1",
"cli-glob": "^0.1.0",
"eslint": "4.7.2",
"eslint-config-react-union": "^0.4.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-react": "7.4.0",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"write-good": "^0.13.0",
"yaspeller": "^4.1.0"
},
"scripts": {
"start": "gatsby develop",
"serve": "gatsby serve",
"build": "yarn run clean && gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "yarn run clean && yarn run build:pp && gh-pages -d public",
"clean": "rm -rf public",
"lint:js": "eslint \"gatsby/*.js\" \"src/**/*.js\"",
"write-good": "write-good $(glob 'content/**/*.md')",
"yaspeller": "yaspeller $(glob 'content/**/*.md')",
"lint": "yarn run lint:js && yarn run yaspeller",
"precommit": "lint-staged",
"prepush": "yarn lint"
},
"lint-staged": {
"(src|gatsby)/**/*.js": [
"prettier --write",
"yarn lint:js --fix",
"git add"
],
"content/**/*.md": [
"prettier --write",
"git add"
]
}
}