-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.91 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
{
"name": "cloudflare-workers-webpack-boilerplate",
"description": "A superbly simple, minimal-config template to build, bundle and deploy Cloudflare Workers with Webpack.",
"author": "Dave Willenberg <[email protected]> (https://github.com/detroitenglish)",
"version": "2.3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/detroitenglish/cloudflare-workers-webpack-boilerplate"
},
"bugs": {
"url": "https://github.com/detroitenglish/cloudflare-workers-webpack-boilerplate/issues"
},
"homepage": "https://github.com/detroitenglish/cloudflare-workers-webpack-boilerplate",
"scripts": {
"build": "webpack --bail --no-deploy",
"build:example": "webpack --bail --example --no-deploy",
"deploy": "webpack --bail --deploy",
"deploy:example": "webpack --bail --example --deploy",
"lint": "eslint src lib test webpack.config.js --ignore-pattern=eslint.test.js",
"reset": "webpack --bail --reset",
"test": "ava --fail-fast"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.3",
"ava": "^1.4.1",
"cloudflare-worker-webpack-plugin": "^2.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-webpack-plugin": "^2.5.4",
"husky": "^2.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0"
},
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^2.0.2",
"cloudflare-workers-webpack-plugin": "^3.0.0",
"colors": "^1.4.0",
"core-js": "^3.12.1",
"dotenv": "^9.0.2",
"eslint": "^7.26.0",
"eslint-plugin-babel": "^5.3.1",
"lodash.sample": "^4.2.1",
"mkdirp": "^1.0.4",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"yargs": "^17.0.1"
},
"engines": {
"node": ">= 12"
},
"husky": {
"hooks": {
"pre-push": "npm-run-all -p lint test"
}
}
}