You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/package.json

63 lines
1.9 KiB
JSON

{
4 years ago
"name": "hydrooj",
4 years ago
"version": "2.2.1",
4 years ago
"main": "hydro/loader.js",
"repository": "https://github.com/hydro-dev/Hydro.git",
"author": "masnn",
"license": "GPL-3.0-only",
"dependencies": {
"adm-zip": "^0.4.14",
"ansi_up": "^4.0.4",
"axios": "^0.19.0",
"bson": "^4.0.2",
"detect-browser": "^5.1.1",
"js-yaml": "^3.13.1",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-morgan": "^1.0.1",
5 years ago
"koa-router": "^8.0.8",
"koa-static-cache": "^5.1.3",
"lodash": "^4.17.15",
"markdown-it": "^10.0.0",
4 years ago
"markdown-it-anchor": "^5.3.0",
"markdown-it-container": "^3.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-imsize": "^2.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-mark": "^3.0.0",
4 years ago
"markdown-it-table-of-contents": "^0.4.4",
4 years ago
"moment-timezone": "^0.5.31",
"mongodb": "^3.5.7",
"nodemailer": "^6.3.1",
"nunjucks": "^3.2.1",
"prismjs": "^1.20.0",
"sockjs": "^0.3.20",
"systeminformation": "^4.26.5",
"yargs": "^15.3.1"
},
"devDependencies": {
5 years ago
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
4 years ago
"eslint-plugin-import": "^2.20.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"webpack": "^4.42.1"
},
"scripts": {
"build": "node build/development.js",
4 years ago
"build:development": "node build/development.js",
"build:production": "node build/production.js",
"build:all": "cd ui && yarn && yarn build:production && cd .. && yarn && yarn build:production",
"start": "node hydro/loader.js",
"pack": "pkg .",
"lint": "eslint build hydro module tool --fix"
},
"pkg": {
"scripts": [
4 years ago
".build/app.js"
],
"assets": [
4 years ago
".build/module/**"
]
}
}