-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "crypto-jobs-list-discord-bot",
"description": "Latest Web3, Cryptocurrency, Blockchain jobs in your Discord server!",
"version": "1.1.0",
"author": "ksaitor",
"license": "UNLICENSED",
"main": "index.ts",
"scripts": {
"start": "node build/index.js",
"start:dev": "ts-node index.ts",
"dev": "nodemon",
"build": "rimraf ./build && tsc",
"postinstall": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"dependencies": {
"@discordjs/rest": "^0.5.0",
"body-parser": "^1.20.4",
"discord-api-types": "^0.36.1",
"discord.js": "^13.17.1",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"include-all": "^4.0.3",
"json-to-table": "^4.2.1",
"lodash": "^4.17.23",
"moment": "^2.30.1",
"mongoose": "^6.13.9",
"node-fetch": "2.7.0",
"node-schedule": "^2.1.1",
"rimraf": "^3.0.2",
"rollbar": "^2.26.5",
"ts-mongoose": "^0.0.24",
"typescript": "^4.9.5"
},
"devDependencies": {
"@swc/core": "^1.15.18",
"@swc/jest": "^0.2.39",
"@types/express": "^4.17.21",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.17.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.4.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.8.2"
},
"resolutions": {
"minimatch": "^3.1.3",
"form-data": "^4.0.4",
"brace-expansion": "^1.1.12",
"lodash": "^4.17.23"
},
"engines": {
"node": ">=18"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/build",
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"^types$": "<rootDir>/types",
"^components/(.*)$": "<rootDir>/components/$1",
"^models/(.*)$": "<rootDir>/models/$1",
"^libs/(.*)$": "<rootDir>/libs/$1"
},
"transform": {
"^.+\\.ts$": ["@swc/jest"]
}
}
}