110 lines
3.2 KiB
JSON
110 lines
3.2 KiB
JSON
{
|
|
"name": "misskey-tools",
|
|
"version": "2.4.0",
|
|
"description": "",
|
|
"main": "built/app.js",
|
|
"author": "Xeltica",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "run-s build:backend build:frontend",
|
|
"build:frontend": "webpack",
|
|
"build:backend": "run-s build:backend-source build:views build:styles build:meta",
|
|
"build:backend-source": "tsc",
|
|
"build:views": "copyfiles -u 1 src/backend/views/*.pug ./built/",
|
|
"build:meta": "node ./build-meta.js",
|
|
"build:styles": "sass styles/:built/assets",
|
|
"start": "node built/app.js",
|
|
"dev": "run-p dev:*",
|
|
"dev:backend": "nodemon",
|
|
"dev:frontend": "webpack --watch",
|
|
"clean": "rimraf built",
|
|
"tsc": "tsc",
|
|
"lint": "eslint --ext .ts,.tsx src",
|
|
"lint:fix": "eslint --fix --ext .ts,.tsx src",
|
|
"migrate": "ts-node --project ./tsconfig.migration.json ./node_modules/typeorm/cli.js migration:run",
|
|
"migrate:revert": "ts-node --project ./tsconfig.migration.json ./node_modules/typeorm/cli.js migration:revert"
|
|
},
|
|
"dependencies": {
|
|
"@babel/preset-react": "^7.14.5",
|
|
"@reduxjs/toolkit": "^1.6.1",
|
|
"@types/insert-text-at-cursor": "^0.3.0",
|
|
"@types/koa-bodyparser": "^4.3.0",
|
|
"@types/koa-multer": "^1.0.0",
|
|
"@types/koa-send": "^4.1.3",
|
|
"@types/ms": "^0.7.31",
|
|
"@types/node-cron": "^2.0.3",
|
|
"@types/object.pick": "^1.3.1",
|
|
"@types/react": "^17.0.19",
|
|
"@types/react-dom": "^17.0.9",
|
|
"@types/react-router-dom": "^5.1.8",
|
|
"@types/styled-components": "^5.1.13",
|
|
"@types/uuid": "^8.0.0",
|
|
"axios": "^0.21.2",
|
|
"class-transformer": "^0.4.0",
|
|
"class-validator": "^0.13.1",
|
|
"css-loader": "^6.2.0",
|
|
"dayjs": "^1.10.7",
|
|
"delay": "^4.4.0",
|
|
"fibers": "^5.0.0",
|
|
"i18next": "^20.6.1",
|
|
"i18next-browser-languagedetector": "^6.1.2",
|
|
"insert-text-at-cursor": "^0.3.0",
|
|
"json5-loader": "^4.0.1",
|
|
"koa": "^2.13.0",
|
|
"koa-bodyparser": "^4.3.0",
|
|
"koa-multer": "^1.0.2",
|
|
"koa-router": "^9.1.0",
|
|
"koa-send": "^5.0.1",
|
|
"koa-session": "^6.0.0",
|
|
"koa-views": "^6.3.0",
|
|
"misskey-js": "^0.0.6",
|
|
"ms": "^2.1.3",
|
|
"node-cron": "^2.0.3",
|
|
"object.pick": "^1.3.0",
|
|
"pg": "^8.3.0",
|
|
"pug": "^3.0.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-i18next": "^11.12.0",
|
|
"react-image-crop": "^9.0.5",
|
|
"react-modal-hook": "^3.0.0",
|
|
"react-redux": "^7.2.4",
|
|
"react-router-dom": "^5.2.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rndstr": "^1.0.0",
|
|
"routing-controllers": "^0.9.0",
|
|
"sass": "^1.38.2",
|
|
"sass-loader": "^12.1.0",
|
|
"style-loader": "^3.2.1",
|
|
"styled-components": "^5.3.1",
|
|
"ts-loader": "^9.2.5",
|
|
"tsc-alias": "^1.3.9",
|
|
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
"typeorm": "0.2.25",
|
|
"typescript": "^4.4.2",
|
|
"uuid": "^8.3.0",
|
|
"webpack": "^5.51.1",
|
|
"webpack-cli": "^4.8.0",
|
|
"xeltica-ui": "xeltica/ui"
|
|
},
|
|
"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",
|
|
"@types/node": "^8.0.29",
|
|
"@typescript-eslint/eslint-plugin": "^4.30.0",
|
|
"@typescript-eslint/parser": "^4.30.0",
|
|
"copyfiles": "^2.3.0",
|
|
"eslint": "^7.32.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",
|
|
"ts-node": "3.3.0"
|
|
}
|
|
}
|