-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
84 lines (84 loc) · 2.51 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
84
{
"private": true,
"name": "uber-cities",
"version": "0.0.0",
"license": "MIT",
"dependencies": {
"algoliasearch": "^3.30.0",
"emotion": "9",
"emotion-server": "9",
"emotion-theming": "9",
"gatsby": "^2.0.59",
"gatsby-plugin-create-client-paths": "^2.0.3",
"gatsby-plugin-emotion": "^2.0.7",
"gatsby-plugin-favicon": "^3.1.4",
"gatsby-plugin-google-analytics": "^2.0.8",
"gatsby-plugin-manifest": "^2.0.11",
"gatsby-plugin-offline": "^2.0.18",
"gatsby-plugin-react-helmet": "^3.0.3",
"gatsby-plugin-robots-txt": "^1.3.0",
"gatsby-plugin-sitemap": "^2.0.3",
"gatsby-plugin-web-font-loader": "^1.0.4",
"lodash.uniqby": "^4.7.0",
"mobile-detect": "^1.4.3",
"netlify-lambda": "^1.1.1",
"react": "^v16.7.0-alpha",
"react-confetti": "^2.3.0",
"react-country-flag": "^1.0.1",
"react-dom": "^v16.7.0-alpha",
"react-emotion": "9",
"react-emotion-flexboxgrid": "^9.0.0",
"react-helmet": "^5.2.0",
"react-pose": "^4.0.2",
"remove-accents": "^0.4.2"
},
"scripts": {
"build": "gatsby build && cp _redirects public/_redirects",
"develop": "gatsby develop",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.js\"",
"test": "run-p format lint",
"lint": "run-p lint:**",
"lint:js": "eslint . --cache --fix",
"lint:css": "stylelint './src/**/*.js'",
"seed": "node data/scrape.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"start:lambda": "netlify-lambda serve src/functions",
"build:lambda": "netlify-lambda build src/functions"
},
"devDependencies": {
"all-contributors-cli": "^5.4.1",
"dotenv": "^6.1.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.2.0",
"if-env": "^1.0.4",
"isomorphic-fetch": "^2.2.1",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.5",
"osmosis": "^1.1.8",
"prettier": "^1.15.2",
"require-dir": "^1.2.0",
"stylelint": "^9.9.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}