-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.8 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
{
"name": "scrambler",
"version": "3.1.0",
"description": "Scrambler is the original Discord bot created for generating scrambles for twisty puzzles.",
"main": "src/app.ts",
"scripts": {
"start": "nodemon --config nodemon.json src/cluster.ts --project ./tsconfig.json",
"serve": "pm2 start ecosystem.config.js --env production",
"build": "tsc --build",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecuber/scrambler.git"
},
"author": "Elijah Sippel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecuber/scrambler/issues"
},
"homepage": "https://github.com/ecuber/scrambler#readme",
"engines": {
"node": ">=16.6.0"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@top-gg/sdk": "^3.1.5",
"dblapi.js": "^2.4.1",
"discord-api-types": "^0.22.0",
"discord-hybrid-sharding": "^2.1.3",
"discord.js": "^13.1.0",
"dotenv": "^8.2.0",
"mongodb": "^4.6.0",
"node-cron": "^3.0.2",
"nodemon": "^2.0.7",
"pm2": "^4.5.5",
"scrambler-util": "^0.3.0",
"topgg-autoposter": "^2.0.1",
"typescript": "*"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/mongodb": "^3.6.9",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.48.0",
"chai": "^4.3.4",
"eslint": "^8.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^8.3.2",
"ts-node": "^10.9.1"
}
}