-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "granite",
"version": "1.0.0",
"description": "The best self-hosted and open source minecraft server management software",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node index.ts",
"setup": "npm install && npm install -g typescript ts-node sass",
"scss": "sass --watch public/dash.scss public/dash.css",
"frontend_ts": "tsc -w public/ts/dash.ts --outDir public/js",
"watchers": "node tools/FrontEndListeners.js",
"build": "sass public/dash.scss public/dash.css && tsc public/ts/dash.ts --outDir public/js"
},
"keywords": [],
"author": "AnotherPillow",
"license": "GPL-3.0",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^20.2.5",
"express": "^4.18.2",
"sass": "^1.77.2",
"ts-node": "^10.9.2"
},
"dependencies": {
"@types/archiver": "^5.3.2",
"@types/node-fetch": "^2.6.4",
"@types/properties-parser": "^0.3.0",
"@types/ws": "^8.5.5",
"archiver": "^5.3.1",
"body-parser": "^1.20.2",
"ejs": "^3.1.9",
"multer": "^1.4.5-lts.1",
"node-fetch": "2.6",
"properties-parser": "^0.6.0",
"ws": "^8.13.0"
}
}