-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 855 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": "reflare-template",
"version": "1.0.0",
"description": "🚀 The template to kickstart Reflare",
"main": "dist/worker.js",
"private": true,
"scripts": {
"build": "webpack",
"dev": "miniflare",
"deploy": "wrangler publish",
"lint": "eslint . --fix --ext .ts"
},
"author": "Xiaoyang Liu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230321.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.54.1",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.35.0",
"miniflare": "^2.12.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"reflare": "^1.1.1"
}
}