- More string keys - Reworked string keys entirely - Moved formatting into seperate typescript module - Write unit tests using `jest` for the format module - README improvements Pirate language needs to be reworked and it should be a bit less painful now to actually add more string keys later on (eventually making the whole webapp strings lie inside the stringkeys)
38 lines
995 B
JSON
38 lines
995 B
JSON
{
|
|
"name": "cvmwebapp",
|
|
"version": "2.0.0",
|
|
"description": "kill me",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "parcel build --no-source-maps --dist-dir dist --public-url '.' src/html/index.html",
|
|
"serve": "parcel src/html/index.html",
|
|
"test": "jest",
|
|
"clean": "run-script-os",
|
|
"clean:darwin:linux": "rm -rf dist .parcel-cache",
|
|
"clean:win32": "rd /s /q dist .parcel-cache"
|
|
},
|
|
"author": "Elijah R",
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"@hcaptcha/types": "^1.0.3",
|
|
"@popperjs/core": "^2.11.8",
|
|
"bootstrap": "^5.3.2",
|
|
"nanoevents": "^7.0.1",
|
|
"simple-keyboard": "^3.7.53"
|
|
},
|
|
"overrides": {
|
|
"@parcel/watcher": "~2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bootstrap": "^5.2.10",
|
|
"@types/jest": "^29.5.12",
|
|
"jest": "^29.7.0",
|
|
"parcel": "^2.11.0",
|
|
"parcel-reporter-static-files-copy": "^1.5.3",
|
|
"prettier": "^3.2.5",
|
|
"run-script-os": "^1.1.6",
|
|
"ts-jest": "^29.1.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|