forked from almostSouji/github-interaction-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 967 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
33
34
35
{
"name": "github-interaction-worker",
"version": "1.0.0",
"description": "CF Worker for a Discord interaction to query GitHub",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"transpile": "tsc --project ./test"
},
"author": "almostSouji",
"license": "",
"devDependencies": {
"@cloudflare/workers-types": "^2.0.0",
"@types/luxon": "^1.25.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-marine": "^8.1.0",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"discord-interactions": "^1.3.3",
"luxon": "^1.25.0"
},
"eslintConfig": {
"extends": "marine/node"
}
}