-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 914 Bytes
/
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
{
"name": "cld3",
"version": "1.0.0",
"description": "A template for kick starting a Cloudflare Workers project",
"main": "index.js",
"scripts": {
"dev-build": "webpack --watch index.js",
"dev-server": "nodemon --watch worker ./node_modules/.bin/cloudworker --debug ./worker/script.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'",
"build": "webpack index.js"
},
"author": "Hixus <1814734+hixus@users.noreply.github.com>",
"license": "MIT",
"devDependencies": {
"@dollarshaveclub/cloudworker": "0.1.0-beta.3",
"nodemon": "^1.19.1",
"husky": "^2.1.0",
"prettier": "^1.17.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run format",
"pre-push": "npm run format"
}
},
"dependencies": {
"cld3-asm": "^3.0.0"
}
}