-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 KB
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
{
"name": "pennycurve",
"version": "2.0.0",
"description": "Chat bot for the MLP Vector Club's Discord server",
"author": "WentTheFox <seinopsys@protonmail.com> (https://github.com/SeinopSys)",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"build": "tsc",
"build:clean": "rimraf build",
"start": "node ./build/index.js",
"start:dev": "npm run build:clean && npm run build && npm run start",
"watch:dev:tsc": "tsc --watch --preserveWatchOutput",
"watch:dev:nodemon": "nodemon ./build/index.js",
"watch:dev:commands": "concurrently --names TSC,Nodemon -c \"blue,green\" \"npm run watch:dev:tsc\" \"npm run watch:dev:nodemon\"",
"watch:dev": "npm run build:clean && npm run build && npm run watch:dev:commands",
"test": "jest --ci",
"test:watch": "jest --watch"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"axios": "^1.7.7",
"bufferutil": "^4.0.8",
"date-fns": "^4.1.0",
"discord-api-types": "^0.37.101",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"pm2": "^5.4.2",
"rimraf": "^6.0.1",
"shell-escape": "^0.2.0",
"tslib": "^2.7.0",
"utf-8-validate": "^6.0.4",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.16.10",
"@types/shell-escape": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"concurrently": "^9.0.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"typescript": "~5.5"
},
"nodemonConfig": {
"delay": 1000
},
"engines": {
"node": "24.x"
}
}