forked from DarkMatterMatt/cf-url-shortener
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.5 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
{
"name": "url-shortener",
"version": "0.1.5",
"description": "URL shortener",
"main": "dist/worker.js",
"scripts": {
"build": "tsc && cross-env NODE_ENV=development webpack",
"build:prod": "tsc && webpack",
"format": "prettier-eslint --write \"src/**/*.{ts,js,css,json,md}\" && eslint --fix src",
"send": "wrangler publish",
"send:prod": "tsc && npm test && wrangler publish --env production",
"test": "ts-mocha --paths \"src/**/*.spec.ts\""
},
"author": "Matt Moran",
"license": "GPL-3.0",
"devDependencies": {
"@cloudflare/workers-types": "^2.1.0",
"@iarna/toml": "^2.2.5",
"@types/chai": "^4.2.14",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.9",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"mocha": "^8.2.1",
"prettier": "^2.2.0",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^8.0.11",
"ts-mocha": "^8.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
}
}