forked from freeCodeCamp/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "freecodecamp-guide",
"description": "A collection of guides to various tools",
"version": "0.1.0",
"author": "freeCodeCamp",
"dependencies": {
"babel-eslint": "^7.2.3",
"caniuse-db": "^1.0.30000700",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.0",
"fs-extra": "^3.0.1",
"gatsby": "^1.0.1",
"gatsby-link": "^1.0.1",
"gatsby-plugin-react-helmet": "^1.0.1",
"gatsby-plugin-sharp": "^1.0.0-beta.7",
"gatsby-plugin-sitemap": "^1.2.0",
"gatsby-remark-copy-linked-files": "^1.0.0-beta.6",
"gatsby-remark-images": "^1.0.0-beta.6",
"gatsby-remark-prismjs": "^1.0.0-beta.6",
"gatsby-remark-responsive-iframe": "^1.0.0-beta.6",
"gatsby-remark-smartypants": "^1.0.0-beta.6",
"gatsby-source-filesystem": "^1.0.0-beta.6",
"gatsby-transformer-remark": "^1.0.0-beta.6",
"react": "^15.6.1",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.6.1",
"react-freecodecamp-search": "^0.2.5",
"react-typography": "^0.15.0",
"rx": "^4.1.0",
"typography": "^0.15.8",
"typography-breakpoint-constants": "^0.14.0",
"typography-plugin-code": "^0.15.9"
},
"devDependencies": {
"gh-pages": "^0.12.0"
},
"keywords": [
"freeCodeCamp",
"guides",
"javascript"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "node seed && gatsby build",
"deploy": "node seed && gatsby build --prefix-paths && gh-pages -d public",
"dev": "node seed && gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"pages/*.js\" \"utils/*.js\" \"wrappers/*.js\" \"html.js\"",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"test": "echo \"Error: no test specified\" && exit 1"
}
}