-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
{
"name": "fusionjs-docs",
"description": "Fusion.js documentation",
"private": true,
"version": "0.0.0",
"author": "Web Platform Team <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:fusionjs/fusionjs.github.io.git"
},
"keywords": [],
"dependencies": {
"express": "^4.16.2",
"gatsby": "^1.9.17",
"gatsby-link": "^1.6.16",
"gatsby-plugin-catch-links": "^1.0.17",
"gatsby-plugin-google-analytics": "^1.0.14",
"gatsby-plugin-react-helmet": "^1.0.5",
"gatsby-plugin-react-next": "^1.0.4",
"gatsby-plugin-sharp": "2.0.35",
"gatsby-remark-autolink-headers": "^1.4.8",
"gatsby-remark-copy-linked-files": "^2.0.11",
"gatsby-remark-images": "3.0.11",
"gatsby-remark-prismjs": "3.2.9",
"gatsby-source-filesystem": "^1.4.12",
"gatsby-transformer-remark": "^1.7.7",
"just-safe-get": "^2.0.0",
"prismjs": "^1.15.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-helmet": "^5.2.0",
"styletron-client": "^3.0.0-rc.1",
"styletron-react": "^3.0.0-rc.2",
"styletron-server": "^3.0.0-rc.1",
"unist-util-visit": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.6.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"prettier": "^1.6.1"
},
"scripts": {
"bootstrap": "./bootstrap.sh",
"lint": "eslint .",
"prettier": "prettier *",
"build-only": "gatsby build --prefix-paths",
"build": "yarn run bootstrap && yarn run build-only",
"clean-docs": "rm -rf docs",
"cp-docs": "yarn run clean-docs && mkdir -p docs/_build/html && cp -a public/. docs/_build/html/",
"build-docs": "yarn run build && yarn run cp-docs",
"start": "node src/server/index.js",
"dev": "NODE_ENV=development gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"test": "yarn run lint"
},
"engines": {
"node": "^8.11.1",
"npm": "5.6.0",
"yarn": "^1.5.1"
},
"volta": {
"node": "8.17.0",
"yarn": "1.22.5"
}
}