generated from GregBrimble/cf-workers-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "cf-workers-dashboard",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"prebuild": "lerna run --parallel clean && lerna run --scope client build",
"build": "wrangler build",
"clean:node": "rimraf node_modules package-lock.json",
"test:client": "CI=true lerna run --scope client test",
"test:server": "CI=true lerna run --scope server test",
"test": "CI=true lerna run test:ci",
"lint": "prettier -c .",
"lint:fix": "npm run lint -- --write",
"start": "node index.js",
"start:client": "CI=true lerna run --scope client --stream start",
"start:worker": "wrangler dev",
"start:tunnel": "cloudflared tunnel --url localhost:3000 --metrics localhost:8081",
"predeploy": "npm run prebuild",
"deploy": "wrangler publish --env production",
"updatePackages": "node updatePackages.js && npm i"
},
"repository": {
"type": "git",
"url": "git@github.com:GregBrimble/cf-workers-dashboard.git"
},
"author": {
"name": "Greg Brimble",
"email": "developer@gregbrimble.com",
"url": "https://gregbrimble.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GregBrimble/cf-workers-dashboard/issues"
},
"homepage": "https://cf-workers-dashboard.gregbrimble.workers.dev/",
"devDependencies": {
"@cloudflare/wrangler": "1.9.0",
"cross-fetch": "3.0.4",
"husky": "4.2.5",
"lerna": "3.20.2",
"npm-check-updates": "4.1.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-loader": "7.0.2",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint || (npm run lint:fix && npm run lint)",
"pre-push": "npm test"
}
},
"dependencies": {}
}