forked from FrontendMasters/bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.83 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
{
"name": "bootcamp",
"description": "Frontend Masters Boot Camp",
"version": "1.0.0",
"author": "Brian Holt <[email protected]>",
"dependencies": {
"bootstrap": "^4.1.3",
"code-mirror-themes": "^1.0.0",
"gatsby": "^2.0.9",
"gatsby-cli": "^2.4.1",
"gatsby-link": "^2.0.1",
"gatsby-plugin-klipse": "^2.1.0",
"gatsby-plugin-layout": "^1.0.2",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-remove-trailing-slashes": "^2.0.4",
"gatsby-plugin-sharp": "^2.0.5",
"gatsby-remark-autolink-headers": "^2.0.6",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.1",
"gatsby-remark-prismjs": "^3.0.0",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-remark": "^2.1.3",
"prismjs": "^1.15.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0"
},
"keywords": [],
"license": "(CC-BY-NC-4.0 OR Apache-2.0)",
"main": "n/a",
"scripts": {
"build:static": "gatsby build --prefix-paths",
"build:zip:fox": "bestzip static/fox.zip static/fox-pet/",
"build:zip:mole": "bestzip static/mole.zip static/mole-game/",
"build:zip:luna": "bestzip static/luna.zip static/gallery/images/",
"build:zip": "run-p build:zip:mole build:zip:fox build:zip:luna",
"build": "run-s build:zip build:static",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx,md,css}\"",
"lint": "eslint \"src/**/*.{js,jsx}\""
},
"devDependencies": {
"@babel/polyfill": "^7.0.0",
"babel-eslint": "^10.0.1",
"bestzip": "^2.1.1",
"core-js": "^2.5.7",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.3"
}
}