Minayotan/package.json

75 lines
1.6 KiB
JSON
Raw Normal View History

2018-08-04 03:42:03 +02:00
{
2021-01-03 07:07:40 +01:00
"_v": "1.5.0",
2020-09-19 03:40:44 +02:00
"main": "./built/index.js",
"scripts": {
"start": "node ./built",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@types/chalk": "2.2.0",
2021-05-10 14:14:11 +02:00
"@types/lokijs": "1.5.4",
2021-07-08 11:30:32 +02:00
"@types/node": "16.0.1",
2020-09-19 03:40:44 +02:00
"@types/promise-retry": "1.1.3",
"@types/random-seed": "0.3.3",
2021-07-08 11:30:32 +02:00
"@types/request-promise-native": "1.0.18",
2020-09-19 03:40:44 +02:00
"@types/seedrandom": "2.4.28",
2021-07-08 11:30:32 +02:00
"@types/twemoji-parser": "13.1.1",
"@types/uuid": "8.3.1",
"@types/ws": "7.4.6",
2020-09-19 03:40:44 +02:00
"autobind-decorator": "2.4.0",
2021-07-08 11:30:32 +02:00
"canvas": "2.8.0",
2021-05-10 14:14:11 +02:00
"chalk": "4.1.1",
"lokijs": "1.5.12",
2020-09-19 03:40:44 +02:00
"memory-streams": "0.1.3",
"misskey-reversi": "0.0.5",
"module-alias": "2.2.2",
"promise-retry": "2.0.1",
"random-seed": "0.3.0",
"reconnecting-websocket": "4.4.0",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"seedrandom": "3.0.5",
"timeout-as-promise": "1.0.0",
2021-07-08 11:30:32 +02:00
"ts-node": "10.0.0",
"twemoji-parser": "13.1.0",
"typescript": "4.3.5",
2021-05-10 14:14:11 +02:00
"uuid": "8.3.2",
2021-07-08 11:30:32 +02:00
"ws": "7.5.2"
2020-09-19 03:40:44 +02:00
},
"devDependencies": {
2020-09-19 09:42:46 +02:00
"@koa/router": "9.4.0",
2021-05-10 14:14:11 +02:00
"@types/jest": "26.0.23",
"@types/koa": "2.13.1",
"@types/koa__router": "8.0.4",
"@types/websocket": "1.0.2",
"jest": "26.6.3",
"koa": "2.13.1",
2020-09-19 09:42:46 +02:00
"koa-json-body": "5.3.0",
2021-05-10 14:14:11 +02:00
"ts-jest": "26.5.6",
"websocket": "1.0.34"
2020-09-19 03:40:44 +02:00
},
"_moduleAliases": {
"@": "built"
},
"jest": {
"testRegex": "/test/.*",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"moduleNameMapper": {
"^@/(.+)": "<rootDir>/src/$1",
"^#/(.+)": "<rootDir>/test/$1"
}
}
2018-08-04 03:42:03 +02:00
}