-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.78 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.78 KB
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
45
46
47
48
49
50
51
52
53
54
{
"name": "github-secretary",
"version": "1.6.0",
"exports": "./index.js",
"type": "module",
"repository": "https://github.com/approvers/github-secretary",
"author": "MikuroXina <ryosukadnak@gmail.com>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build:bot": "esbuild --outfile=dist/bundle.js --format=esm --sourcemap --bundle src/bot/apps/release.ts --platform=node --target=node16 --external:./node_modules/*",
"start:bot": "node dist/bundle.js",
"dev:web": "next ./src/web",
"build:web": "next build ./src/web",
"start:web": "next start ./src/web",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@babel/core": "^7.22.9",
"discord.js": "^14.11.0",
"dotenv": "^17.0.0",
"faunadb": "^4.8.0",
"mutex-promise": "^0.1.0",
"next": "^16.0.0",
"node-fetch": "^3.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"toml": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@next/eslint-plugin-next": "^16.0.0",
"@types/node": "^24.0.0",
"@types/node-fetch": "^2.6.4",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "~0.28.0",
"eslint": "^10.0.0",
"eslint-config-next": "^16.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"globals": "^17.0.0",
"prettier": "^3.0.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.0"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}