-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "lumibot",
"version": "1.0.0",
"description": "Discord Bot for the Luminescent Platinum ROM Hack.",
"main": "bot.js",
"scripts": {
"start": "GAME_VERSION=3.0 node bot.js",
"start:prod": "npm test && cross-env NODE_ENV=production forever start bot.js",
"reset": "node reset.js",
"reset:prod": "NODE_ENV=production npm reset",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamLumi/Lumibot.git"
},
"keywords": [
"discord-js"
],
"author": {
"name": "Zatsu Fakuzatsu",
"url": "https://github.com/Fakuzatsu"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TeamLumi/Lumibot/issues"
},
"homepage": "https://luminescent.team/",
"dependencies": {
"@discordjs/rest": "^1.6.0",
"chartjs-node-canvas": "^3.1.0",
"discord-api-types": "^0.37.36",
"discord.js": "^14.9.0",
"fuse.js": "^6.6.2",
"mongodb": "^6.5.0",
"mongoose": "^8.2.4",
"simple-git": "^3.19.1",
"ts-cache-mongoose": "1.5.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"jest": "^29.6.2",
"prettier": "^2.8.8"
},
"engines": {
"node": ">=18.16.0"
},
"jest": {
"setupFiles": [
"./__tests/jest.setup.js"
],
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$"
}
}