generated from jim60105/worker-ts_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "open-graph-tag-builder",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"deploy": "wrangler publish",
"dev": "wrangler dev",
"format": "prettier --config .prettierrc.json --write src/**/*.{ts,js,css,json,md}",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
"transpile": "tsc --project ./test"
},
"author": "author",
"license": "AGPLv3",
"private": true,
"devDependencies": {
"@cloudflare/workers-types": "^4.20230228.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/pouchdb-browser": "^6.1.3",
"@types/pouchdb-find": "^7.3.0",
"chai": "^4.2.0",
"mocha": "^10.0.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^9.3.1",
"typescript": "^4.9.5",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"wrangler": "2.12.0"
},
"dependencies": {
"@cfworker/cosmos": "^1.13.5",
"pouchdb-browser": "^8.0.1",
"pouchdb-find": "^8.0.1"
}
}