-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.16 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
{
"name": "discord-invite-widget",
"version": "0.0.0",
"main": "src/worker.ts",
"private": true,
"license": "MIT",
"scripts": {
"deploy": "wrangler deploy src/worker.ts --env production",
"dev": "wrangler dev --remote --env development",
"prettier:check": "prettier --check \"./**/*.{js,jsx,ts,mjs,tsx,md,css,json}\" --ignore-path .gitignore",
"format:quick": "pretty-quick --staged --pattern \"(packages|apps)/**/*.{js,jsx,mjs,ts,tsx,md,css,json}\"",
"format": "prettier --write \"./**/*.{js,jsx,ts,mjs,tsx,md,css,json}\" --ignore-path .gitignore",
"lint": "eslint ./src --ext .tsx,.ts,.jsx,.js",
"lint:fix": "eslint ./src --fix --ext .tsx,.ts,.jsx,.js",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@casperiv/eslint-config": "^8.0.0",
"@cloudflare/workers-types": "^4.20230814.0",
"@types/node": "^20.5.0",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"prettier": "^3.0.2",
"pretty-quick": "^3.1.3",
"typescript": "^5.1.6",
"wrangler": "^3.5.0"
},
"dependencies": {
"@resvg/resvg-wasm": "^2.4.1",
"discord-api-types": "^0.37.53",
"satori": "^0.10.3",
"twemoji": "^14.0.2"
}
}