forked from freeCodeCamp/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.66 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
{
"name": "freecodecamp-guide",
"description": "A collection of guides to various tools",
"version": "0.1.0",
"author": "freeCodeCamp",
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/preset-es2015": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"@freecodecamp/gatsby-source-filesystem": "^2.0.1-beta.3",
"axios": "^0.16.2",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.0-beta.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"caniuse-db": "^1.0.30000700",
"eslint": "^4.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.0.0",
"fs-extra": "^3.0.1",
"gatsby": "^2.0.17",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.4",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.0.1",
"gatsby-plugin-sitemap": "^2.0.1",
"gatsby-remark-prismjs": "^3.0.1",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-transformer-remark": "^2.1.6",
"lodash": "^4.17.5",
"node-sass": "^4.9.0",
"prettier": "^1.13.5",
"prismjs": "^1.13.0",
"prop-types": "^15.5.10",
"react": "^16.4.1",
"react-bootstrap": "^0.31.0",
"react-dom": "^16.4.1",
"react-fontawesome": "^1.6.1",
"react-freecodecamp-search": "^2.0.1",
"react-helmet": "^5.2.0",
"react-media": "^1.8.0",
"readdirp-walk": "^1.6.0",
"redux-actions": "^2.2.1",
"redux-create-types": "0.0.1",
"redux-epic": "^0.3.0",
"rx": "^4.1.0",
"unist-util-select": "^1.5.0",
"unist-util-visit": "^1.1.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"chai": "^4.1.2",
"chalk": "^2.0.1",
"mocha": "^5.2.0",
"postcss-loader": "^2.1.5",
"pre-commit": "^1.2.2"
},
"keywords": [
"freeCodeCamp",
"guides",
"javascript"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"_comment": "ONLY RUN BUILD IF YOUR SYSTEM HAS 8GB OR MORE OF RAM",
"build": "node --max_old_space_size=7168 node_modules/gatsby-cli build",
"dev": "gatsby develop",
"develop": "gatsby develop",
"ensure-page-naming": "node ./bin/ensure-page-naming.js",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore . --fix",
"format": "prettier --single-quote --semi es5 --write '?(src|plugins)/**/*.js' && npm run lint",
"pre-commit-message": "echo \"Running pre-commit script. This can take a while.\"",
"test": "yarn ensure-page-naming && mocha -R spec \"./{,!(node_modules)/**/}*.test.js\""
},
"pre-commit": [
"pre-commit-message",
"format"
],
"browserslist": [
">0.25%"
]
}