-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "uof-status",
"version": "0.0.2",
"description": "A Node.js application used to monitor UOF's server status",
"main": "uof-status.js",
"scripts": {
"dev": "npx nodemon uof-status",
"build": "npx tsc",
"makepkg": "./build.sh",
"dev-start": "npx ts-node uof-status",
"start": "node uof-status"
},
"repository": {
"type": "git",
"url": "git+https://github.com/University-Of-Fool/uof-status.git"
},
"author": "University Of Fool",
"license": "MIT",
"bugs": {
"url": "https://github.com/University-Of-Fool/uof-status/issues"
},
"homepage": "https://github.com/University-Of-Fool/uof-status#readme",
"dependencies": {
"@prisma/client": "^4.14.1",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"body-parser": "^1.20.1",
"commander": "^10.0.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"log4js": "^6.7.1",
"toml": "^3.0.0",
"ts-md5": "^1.3.1"
},
"devDependencies": {
"nodeman": "^1.1.2",
"nodemon": "^2.0.22",
"prettier": "^3.0.0-alpha.7-for-vscode",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}