gitea-jira/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2024-01-10 12:57:19 -05:00
{
"name": "gitea-jira",
"version": "1.0.0",
"description": "Tool for basic mirroring issues, tasks, and commits between Gitea and Jira",
"main": "index.js",
"scripts": {
2024-01-12 00:58:01 -05:00
"all": "npm run clean && npm run build && npm run start",
"clean": "rm -rf build/ && rm -rf dist/",
"prebuild": "mkdir -p dist/public/ && cp -R assets/* dist/public/",
"build": "tsc && webpack --config ./webpack/development.js",
"rebuild": "npm run clean && npm run build",
"server": "node ./build/index.js",
"debug": "node ./build/index.js -debug",
"winserver": "node .\\build\\index.js"
2024-01-10 12:57:19 -05:00
},
"repository": {
"type": "git",
"url": "https://git.alanocull.com/triple-aaa-games/gitea-jira.git"
},
"keywords": [
"gitea",
"jira",
"project",
"management",
"agile"
],
"author": "Alan O'Cull, Triple AAA Games",
"license": "ISC",
"dependencies": {
2024-01-11 18:15:59 -05:00
"body-parser": "^1.20.2",
2024-01-12 00:58:01 -05:00
"lodash": "^4.17.21",
"ts-loader": "^9.5.1",
"webpack-node-externals": "^3.0.0"
2024-01-11 18:46:22 -05:00
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"express": "^4.18.2",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4"
2024-01-10 12:57:19 -05:00
}
}