-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.45 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
{
"name": "colony-website",
"description": "Colony Website",
"version": "1.0.0",
"contributors": [
"Christian Maniewski <[email protected]>",
"Curtis Olson <[email protected]>",
"Ryan Christoffersen <[email protected]>"
],
"dependencies": {
"@reach/router": "^1.2.1",
"camelcase": "^5.2.0",
"docsearch.js": "^2.6.2",
"formik": "^1.5.8",
"gatsby": "^2.2.5",
"gatsby-plugin-i18n": "^1.0.1",
"nanoid": "^2.0.1",
"prism-themes": "^1.0.0",
"prismjs": "^1.14.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-intl": "^2.8.0",
"react-popper": "^1.3.3",
"recompose": "^0.30.0",
"rehype-react": "^3.1.0",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"slugify": "^1.3.4",
"yup": "^0.27.0"
},
"license": "MIT",
"scripts": {
"build": "yarn run clean && gatsby build",
"clean": "rm -rf .cache",
"dev": "yarn run clean && gatsby develop",
"flow": "flow check",
"lint": "eslint --fix 'src/**/*.{js,jsx}' 'scripts/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "bash ./scripts/deploy.sh"
},
"devDependencies": {
"@colony/eslint-config-colony": "^7.0.0",
"babel-eslint": "^10.0.1",
"caniuse-db": "^1.0.30000830",
"dotenv": "^5.0.1",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.96.0",
"gatsby-node-helpers": "^0.3.0",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-flow": "^1.0.2",
"gatsby-plugin-react-helmet": "^3.0.5",
"gatsby-plugin-robots-txt": "^1.3.0",
"gatsby-plugin-sitemap": "^2.0.4",
"gatsby-remark-autolink-headers": "^2.0.12",
"gatsby-remark-prismjs": "^3.2.2",
"gatsby-source-filesystem": "^2.0.17",
"gatsby-source-ghost": "^3.4.4",
"gatsby-transformer-remark": "^2.2.0",
"husky": "^1.3.1",
"prettier": "^1.16.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn flow && yarn lint"
}
}
}