forked from DataDog/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 4.08 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "docs",
"version": "1.0.0",
"description": "Corpweb built on HUGO",
"private": true,
"scripts": {
"preinstall": "bash local/bin/sh/preinstall.sh",
"prestart": "rimraf public",
"start": "run-p start:**",
"start:webpack": "webpack --config webpack.dev.js",
"start:hugo": "./node_modules/.bin/hugo server -D -d ./public -s ./ --port 1313 --navigateToChanged --noHTTPCache",
"prebuild": "rimraf public",
"build": "run-s build:webpack build:hugo",
"build:preview": "npm run build:webpack && npm run build:hugo:preview",
"build:hugo": "./node_modules/.bin/hugo -d ./public -s ./ -v --minify",
"build:hugo:preview": "npm run build:hugo -- -D -F --environment preview",
"build:webpack": "NODE_ENV=production webpack --config webpack.prod.js",
"build:webpack:preview": "NODE_ENV=preview webpack --config webpack.prod.js",
"analyze": "webpack --config webpack.prod.js --env.BUNDLE_ANALYZE=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataDog/corp-hugo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DataDog/corp-hugo/issues"
},
"homepage": "https://github.com/DataDog/corp-hugo#readme",
"engines": {
"node": ">= 4.5"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"a11y": "https://s3.amazonaws.com/origin-static-assets/corp-node-packages/master/a11y-v1.0.1.tgz",
"algoliasearch": "3.33.0",
"bootstrap": ">=4.1.2",
"del": "4.1.1",
"fancy-log": "^1.3.3",
"hugo-bin": "0.43.3",
"jquery": "^3.4.1",
"jshint": "2.10.2",
"jshint-stylish": "2.2.1",
"json2csv": "^4.5.2",
"lazypipe": "1.0.2",
"lazysizes": "4.0.1",
"lodash": "4.17.15",
"merge-stream": "2.0.0",
"minimist": "1.1.0",
"mixitup": "3.3.1",
"mousetrap": "1.6.1",
"pa11y": "^5.2.0",
"picturefill": "3.0.2",
"popper.js": "1.15.0",
"stickyfilljs": "2.1.0",
"tiny-async-pool": "^1.0.4",
"traverse": "0.6.6",
"webpack": "^4.37.0",
"yaml-lint": "^1.2.4"
},
"resolutions": {
"axios": "0.19.0",
"lodash": "4.17.15"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.0",
"exports-loader": "^0.7.0",
"expose-loader": "^0.7.5",
"file-loader": "^4.1.0",
"html-loader": "^0.5.5",
"imports-loader": "^0.8.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"resolve-url-loader": "^3.1.0",
"rimraf": "^2.6.3",
"run-sequence": "^2.2.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"webpack-assets-manifest": "^3.1.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.1"
}
}