-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 961 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 961 Bytes
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
{
"name": "collabvm-auth-admin-panel",
"version": "1.0.0",
"description": "Admin panel for the CollabVM Authentication Server",
"type": "module",
"scripts": {
"build": "parcel build --no-source-maps --dist-dir dist --public-url '.' src/html/index.html",
"serve": "parcel src/html/index.html",
"clean": "run-script-os",
"clean:darwin:linux": "rm -rf dist .parcel-cache",
"clean:win32": "rd /s /q dist .parcel-cache"
},
"repository": {
"type": "git",
"url": "https://git.computernewb.com/collabvm/collabvm-auth-admin-panel"
},
"author": "Computernewb Development Team",
"license": "GPL-3.0",
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/node": "^24.0.4",
"parcel": "^2.12.0",
"run-script-os": "^1.1.6",
"typescript": "^5.4.4"
},
"dependencies": {
"@hcaptcha/types": "^1.0.3",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"fs": "^0.0.1-security"
}
}