forked from cloudflare/isbgpsafeyet.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.76 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
{
"name": "isbgpsafeyet.com",
"version": "1.0.0",
"description": "**Is BGP safe yet?** is an initiative by Cloudflare to make BGP more secure by deploying RPKI.",
"main": "public/index.js",
"scripts": {
"build": "webpack-cli",
"build-worker": "wrangler publish --dry-run --env production",
"deploy-worker": "wrangler publish --env production",
"webpack-dev": "webpack-cli -w ",
"wrangler-dev": "wrangler dev",
"wrangler-whoami": "wrangler whoami",
"start": "concurrently --kill-others-on-fail --names 'webpack ,wrangler' --prefix name --prefix-colors 'bgCyan.black,bgYellow.black' \"npm run webpack-dev\" \"npm run wrangler-dev\" \"while ! nc -z localhost 8787; do\nsleep 1\ndone; open 'http://localhost:8787'\"",
"test": "jest",
"lint-markdown": "markdownlint '**/*.md' --ignore node_modules --ignore dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/isbgpsafeyet.com.git"
},
"author": "Adam Schwartz",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudflare/isbgpsafeyet.com/issues"
},
"homepage": "https://github.com/cloudflare/isbgpsafeyet.com#readme",
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.3.0",
"csv-parse": "^5.3.6",
"lodash.pickby": "^4.6.0"
},
"devDependencies": {
"wrangler": "^2.15.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"focus-visible-polyfill": "^1.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"mini-css-extract-plugin": "^2.7.5",
"css-minimizer-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"markdownlint-cli": "^0.33.0"
}
}