-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
45 lines (45 loc) · 1.94 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
{
"name": "httparchive.org",
"version": "0.0.1",
"description": "Track how the web is built.",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/HTTPArchive/httparchive.org.git"
},
"author": "Rick Viscomi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HTTPArchive/httparchive.org/issues"
},
"homepage": "https://github.com/HTTPArchive/httparchive.org#readme",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"watch": "webpack --config webpack.config.js --mode production --watch",
"generate": "node ./tools/generate",
"start": "run-script-os",
"start:darwin:linux": "./tools/scripts/run_and_test_website.sh -d",
"start:win32": "call tools/scripts/run_and_test_website.bat",
"stage": "npm run build && npm run timestamps && npm run generate && echo \"Y\" | gcloud app deploy --project httparchive --no-promote --version=technology-report",
"testdeploy": "npm run build && npm run timestamps && npm run generate && echo \"Y\" | gcloud app deploy --project httparchive --no-promote",
"deploy": "./tools/scripts/deploy.sh",
"timestamps": "node ./tools/generate/generate_timestamps",
"lint": "run-script-os",
"lint:darwin:linux": "docker container run -it --rm -v \"$PWD\":/app -w /app --entrypoint=./tools/scripts/run_linter_locally.sh github/super-linter",
"lint:win32": "docker container run --rm -v \"%cd%\":/app -w /app/ --entrypoint=./tools/scripts/run_linter_locally.sh github/super-linter",
"pytest": "pytest --cov server --cov-fail-under=100 --cov-report=term-missing -s",
"test": "node ./tools/test"
},
"devDependencies": {
"ejs": "3.1.10",
"fs-extra": "11.2.0",
"highcharts": "11.4.8",
"node-fetch": "3.3.2",
"recursive-readdir": "2.2.3",
"run-script-os": "1.1.6",
"web-vitals": "4.2.4",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"xml-js": "1.6.11"
}
}