forked from yugabyte/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
{
"name": "docs",
"version": "1.0.0",
"description": "YugaByte Docs",
"main": "public/index.html",
"scripts": {
"start": "run-p webpack-watch sass-watch hugo-server",
"build": "rm -rf public && npm ci && run-s webpack-build sass-build hugo-build",
"hugo-build": "hugo -b https://docs.yugabyte.com",
"hugo-server": "hugo server --bind 0.0.0.0 --baseURL ${YB_HUGO_BASE:-localhost}",
"sass-build": "node_modules/node-sass/bin/node-sass --output-style compressed styles/site.scss > static/css/site.css",
"sass-watch": "npm run sass-build; node_modules/node-sass/bin/node-sass --watch --output static/css --output-style compressed styles/site.scss",
"webpack-build": "webpack",
"webpack-watch": "webpack -w",
"publish": "npm run build && aws s3 rm s3://docs.yugabyte.com --recursive && aws s3 sync public/ s3://docs.yugabyte.com"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yugabyte/docs.git"
},
"author": "YugaByte, Inc.",
"license": "UNLICENSED",
"homepage": "https://bitbucket.org/yugabyte/docs#readme",
"dependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clipboard": "^1.7.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-xo-space": "^0.17.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"hugo-algolia": "^1.2.11",
"node-sass": "^4.12.0",
"npm": "^6.9.0",
"npm-run-all": "^4.1.1",
"particles.js": "^2.0.0",
"react-dev-tools": "0.0.1",
"react-dev-utils": "^4.2.1",
"run-p": "0.0.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}