-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "github-secretary",
"version": "1.6.0",
"exports": "./index.js",
"type": "module",
"repository": "https://github.com/approvers/github-secretary",
"author": "MikuroXina <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev:bot": "ts-node --esm src/bot/apps/release.ts",
"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 './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix --ext .ts,.tsx --ignore-path .gitignore --ignore-path .eslintignore ./src/"
},
"dependencies": {
"@babel/core": "^7.22.9",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"faunadb": "^4.8.0",
"mutex-promise": "^0.1.0",
"next": "^15.0.0",
"node-fetch": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.0.0",
"@types/node": "^22.0.0",
"@types/node-fetch": "^2.6.4",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "~0.24.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
}
}