forked from ryanwiemer/FCC-Hackathon-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.88 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
{
"name": "You-Lingual",
"description": "Learn a new language from your social media with the power of machine learning and your friends' selfies.",
"version": "0.0.1",
"author": [
"Ryan Wiemer",
"Kyle Smith",
"Robert Wolf",
"Anil Kumar Nandamuri"
],
"dependencies": {
"babel-plugin-styled-components": "^1.8.0",
"clarifai": "^2.9.0",
"gatsby": "^2.0.38",
"gatsby-image": "^2.0.19",
"gatsby-plugin-manifest": "^2.0.7",
"gatsby-plugin-netlify": "^2.0.3",
"gatsby-plugin-offline": "^2.0.11",
"gatsby-plugin-react-helmet": "^3.0.1",
"gatsby-plugin-sharp": "^2.0.11",
"gatsby-plugin-styled-components": "^3.0.1",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.0.7",
"gatsby-transformer-sharp": "^2.1.7",
"node-instagram": "^4.2.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-helmet": "^5.2.0",
"react-overdrive": "0.0.10",
"styled-components": "^4.0.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"test": "npm run lint:css && npm run lint:js && npm run check-pretty",
"dev": "gatsby develop",
"lint:js": "eslint --ext .js,.jsx .",
"lint:css": "stylelint 'src/**/*.js'",
"check-pretty": "prettier -l {,src/**/}*.{js,jsx,json,css,scss}",
"format": "prettier --write \"src/**/*.js\"",
"clean": "rm -rf public .cache"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-gatsby-standard": "^2.1.0",
"prettier": "^1.14.3",
"stylelint": "^9.7.1",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}