misskey-tools/package.json

68 lines
2.0 KiB
JSON
Raw Normal View History

2020-08-04 12:13:41 +09:00
{
2020-08-04 14:38:26 +09:00
"name": "misshaialert",
2020-09-10 01:46:04 +09:00
"version": "1.3.0",
2020-08-04 14:38:26 +09:00
"description": "",
"main": "built/app.js",
"author": "Xeltica",
"private": true,
"scripts": {
"tsc": "tsc",
"start": "node built/app.js",
"lint": "eslint src/index.ts",
"lint:fix": "eslint --fix src/index.ts",
"build:views": "copyfiles -u 1 src/views/*.pug ./built/",
"clean": "rimraf built",
"build:scripts": "tsc",
"build:styles": "sass styles/:built/assets",
"build": "run-p build:*",
"migrate": "ts-node --project ./tsconfig.migration.json ./node_modules/typeorm/cli.js migration:run",
"watch": "nodemon"
},
"dependencies": {
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-mount": "^4.0.0",
"@types/koa-multer": "^1.0.0",
2020-08-04 14:38:26 +09:00
"@types/koa-static": "^4.0.1",
2020-08-04 16:43:13 +09:00
"@types/node-cron": "^2.0.3",
2020-08-04 14:38:26 +09:00
"@types/uuid": "^8.0.0",
"axios": "^0.19.2",
2020-08-12 13:31:09 +09:00
"delay": "^4.4.0",
2020-08-04 14:38:26 +09:00
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-multer": "^1.0.2",
2020-08-04 14:38:26 +09:00
"koa-router": "^9.1.0",
"koa-session": "^6.0.0",
"koa-static": "^5.0.0",
"koa-views": "^6.3.0",
2020-08-04 16:43:13 +09:00
"node-cron": "^2.0.3",
2020-08-04 14:38:26 +09:00
"pg": "^8.3.0",
"pug": "^3.0.0",
2020-08-04 16:43:13 +09:00
"reflect-metadata": "^0.1.10",
2020-08-12 13:31:09 +09:00
"rndstr": "^1.0.0",
2020-08-04 14:38:26 +09:00
"sass": "^1.26.10",
"typeorm": "0.2.25",
"typescript": "^3.9.7",
2020-08-04 16:43:13 +09:00
"uuid": "^8.3.0"
2020-08-04 14:38:26 +09:00
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/koa": "^2.11.3",
"@types/koa-router": "^7.4.1",
"@types/koa-session": "^5.10.2",
"@types/koa-views": "^2.0.4",
2020-08-04 16:43:13 +09:00
"@types/node": "^8.0.29",
2020-08-04 14:38:26 +09:00
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"copyfiles": "^2.3.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
2020-08-04 16:43:13 +09:00
"ts-node": "3.3.0"
2020-08-04 14:38:26 +09:00
}
2020-08-04 16:43:13 +09:00
}