39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "group-ironmen",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"axios": "^0.26.1",
|
|
"chokidar": "^3.5.3",
|
|
"clean-css": "^5.3.2",
|
|
"compression": "^1.7.4",
|
|
"concurrently": "^6.2.2",
|
|
"esbuild": "^0.17.10",
|
|
"eslint": "^7.32.0",
|
|
"express": "^4.17.1",
|
|
"express-winston": "^4.2.0",
|
|
"glob": "^7.2.0",
|
|
"husky": "^7.0.2",
|
|
"jsdom": "^17.0.0",
|
|
"prettier": "^2.4.1",
|
|
"terser": "^5.16.5",
|
|
"winston": "^3.3.3"
|
|
},
|
|
"scripts": {
|
|
"bundle": "npm run clean && node build.js --prod",
|
|
"clean": "node scripts/clean.js",
|
|
"start": "concurrently \"npm run watch\" \"npm run serve -- --backend https://groupiron.men\"",
|
|
"start:local-api": "concurrently \"npm run watch\" \"npm run serve -- --backend http://127.0.0.1:8080\"",
|
|
"serve": "node scripts/server.js",
|
|
"watch": "node build --watch",
|
|
"lint": "eslint --ext .js src",
|
|
"format": "prettier --write src/",
|
|
"format:check": "prettier --check src/",
|
|
"fix": "npm run lint -- --fix",
|
|
"generate-component": "node scripts/generate-component.js",
|
|
"prepare": "if exist .git (husky install) else (echo Skipping husky install)",
|
|
"precommit": "npm run format:check && npm run lint"
|
|
},
|
|
"author": "Christopher Brown"
|
|
}
|