-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.04 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.04 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "github-classbot",
"version": "0.1.0",
"type": "module",
"private": true,
"description": "GitHub Classroom Helper Bot",
"author": "Spiros Papadimitriou",
"license": "ISC",
"homepage": "https://github.com/clusterhack/github-classbot",
"keywords": [
"probot",
"probot-app",
"github",
"education",
"classroom"
],
"scripts": {
"clean": "rimraf lib lib-ui tsconfig.bot.tsbuildinfo tsconfig.ui.tsbuildinfo",
"dev:bot": "DOTENV_CONFIG_PATH=.env.dev node ./lib/main.js",
"dev:ui": "DOTENV_CONFIG_PATH=.env.dev vite",
"dev": "concurrently -c auto -k -i --default-input-target ui npm:dev:*",
"build:bot": "time -f 'Done in %esec (%P); %MKB' tsc --project tsconfig.bot.json",
"build:ui": "rimraf lib-ui tsconfig.ui.tsbuildinfo && tsc --project tsconfig.ui.json --noEmit && vite build",
"build": "concurrently -c auto npm:build:*",
"knex": "tsx --env-file=.env node_modules/.bin/knex",
"preview": "DOTENV_CONFIG_PATH=.env.dev VITE_DEV_STATIC=true node lib/main.js",
"start": "node lib/main.js",
"deploy": "pm2 start --name classbot --time lib/main.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"_sql": "mariadb --user=$CLASSBOT_DB_USER --password=$CLASSBOT_DB_PASSWORD $CLASSBOT_DB_DATABASE",
"sql": "dotenv -- npm run _sql"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"@octokit/request-error": "^7.1.0",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.163.3",
"@types/knex": "^0.15.2",
"body-parser": "^2.2.2",
"deepmerge": "^4.3.1",
"dockerode": "^4.0.9",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"http-link-header": "^1.1.3",
"ignore": "^7.0.5",
"jszip": "^3.10.1",
"knex": "^3.1.0",
"mustache": "^4.2.0",
"mysql": "^2.18.1",
"objection": "^3.1.5",
"probot": "^14.2.4",
"qs": "^6.15.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/dockerode": "^4.0.1",
"@types/express-session": "^1.18.2",
"@types/http-link-header": "^1.0.7",
"@types/jest": "^29.5.14",
"@types/mustache": "^4.2.6",
"@types/node": "^22.15.0",
"@types/qs": "^6.14.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^9.2.1",
"dotenv-cli": "^11.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"http-proxy-middleware": "^3.0.5",
"jest": "^29.7.0",
"nock": "^14.0.11",
"pino-pretty": "^13.1.3",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^6.4.1"
},
"engines": {
"node": ">= 20.18.0"
}
}