38 lines
922 B
JSON
38 lines
922 B
JSON
{
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"name": "pattern-packer",
|
|
"version": "1.0.0",
|
|
"description": "The UV experience.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"all": "npm run clean && npm run build && npm run start",
|
|
"allwin": "npm run build && npm run start",
|
|
"clean": "rm -rf build/",
|
|
"cleanwin": "rmdir -Recurse -Force /S /Q .\\build\\",
|
|
"build": "tsc",
|
|
"rebuild": "npm run clean && npm run build",
|
|
"server": "node ./build/server/server.js",
|
|
"debug": "node ./build/server/server.js -debug"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.alanocull.com/alan/pattern-packer"
|
|
},
|
|
"keywords": [
|
|
"uv",
|
|
"packer",
|
|
"packing",
|
|
"web"
|
|
],
|
|
"author": "Alan O'Cull, Matt Schuler",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"webpack": "^5.89.0"
|
|
}
|
|
}
|