-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.6 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
{
"name": "Modpacker-Distro-Server",
"version": "1.0.0",
"description": "A host/admin panel to manage your Modpack and distribute updates to your users.",
"main": "./dist/ts/app.js",
"repository": "https://github.com/CartelModpack/Modpack-Distro-Server.git",
"author": "gavinhsmith <[email protected]> (https://gavinhsmith.com)",
"license": "GPL-3.0",
"private": true,
"type": "module",
"dependencies": {
"@dotenvx/dotenvx": "^1.31.3",
"@gavinhsmith/simpledb": "^1.0.6",
"cookie-parser": "^1.4.7",
"express": "^4.21.2",
"express-handlebars": "^8.0.1",
"formidable": "^3.5.2",
"marked": "^15.0.4",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.0",
"@types/formidable": "^3.4.5",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"scripts": {
"clean": "rimraf ./dist ./uploads ./web/public/css ./database.db",
"ts:build": "tsc",
"ts:watch": "tsc --watch",
"postcss:build": "postcss --verbose ./src/styles -d ./web/public/css",
"postcss:watch": "postcss --verbose ./src/styles -d ./web/public/css --watch",
"build": "npm-run-all clean ts:build postcss:build --print-label",
"dev:launch": "nodemon .",
"dev": "npm-run-all build --parallel ts:watch postcss:watch dev:launch --print-label",
"start": "node ."
}
}