-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "osu-multiplayer-plus",
"version": "0.1.0",
"description": "Discord bot adding virtual game-modes like Battle Royale to osu! multiplayer lobbies",
"homepage": "https://osumpp.xyz",
"main": "src/index.ts",
"author": "github.com/ceilingwaffle",
"license": "MIT",
"scripts": {
"start": "run-script-os",
"start:windows": "rmdir /S /Q dist & tsc & xcopy .\\src\\locales .\\dist\\locales\\ /E /C /Q /Y & ts-node src/index.ts",
"start:macos": "rm -rf dist & tsc & cp -RfX src/locales/ dist/locales/ & ts-node src/index.ts",
"start:linux": "rm -rf dist & tsc & mkdir -p dist/locales/ & cp -ar src/locales/ dist/locales/ & ts-node src/index.ts",
"start-js": "rmdir /S /Q dist & tsc & xcopy .\\src\\locales .\\dist\\locales\\ /E /C /Q /Y & node dist/index.js",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"entity:create": "ts-node ./node_modules/typeorm/cli.js entity:create -n",
"seed": "ts-node cli/seed-db.ts",
"delsqlite": "rmdir /S /Q dist & tsc & del .\\src\\database\\app-database.sqlite & npm run seed & npm start",
"pgdrop": ".\\cli\\drop-and-create-postgres-db.bat",
"test": "rmdir /S /Q dist & tsc & xcopy .\\src\\locales .\\dist\\locales\\ /E /C /Q /Y & mocha --require ts-node/register --require test/config/mocha.env.js test/**/*.test.ts --timeout 60000 --slow 1000",
"build": "rmdir /S /Q dist & tsc",
"cli:command": "ts-node ./cli/command.ts"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/dotenv": "^6.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.61",
"chai": "^4.2.0",
"chai-exclude": "^2.0.2",
"mocha": "^6.2.3",
"mocha-parallel-tests": "^2.3.0",
"nyc": "^14.1.1",
"run-script-os": "^1.1.1",
"ts-node": "^3.3.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/chai-spies": "^1.0.1",
"@types/fs-extra": "^7.0.0",
"@types/lodash": "^4.14.158",
"@types/mustache": "^0.8.32",
"@types/puppeteer": "^2.1.1",
"async-eventemitter": "^0.2.4",
"bancho.js": "^0.9.7",
"bottleneck": "^2.19.5",
"chai-spies": "^1.0.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"commander": "^2.20.3",
"discord.js": "^11.6.4",
"discord.js-commando": "^0.10.0",
"dotenv": "^8.2.0",
"emittery": "^0.5.1",
"events-intercept": "^2.0.0",
"fs-extra": "^8.0.1",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"lodash": "^4.17.19",
"log4js": "^4.3.1",
"module-alias": "^2.2.2",
"moment": "^2.27.0",
"mustache": "^3.2.1",
"nodesu": "^0.7.2",
"pg": "^7.18.2",
"pg-native": "^3.0.0",
"puppeteer": "^2.1.1",
"reflect-metadata": "^0.1.13",
"role-acl": "^3.3.7",
"set-interval-async": "^1.0.33",
"sqlite": "^3.0.6",
"sqlite3": "^4.2.0",
"tasktimer": "^3.0.0",
"ts-cleaner": "^1.0.5",
"typeorm": "^0.2.25"
}
}