-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 1.79 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
{
"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.0",
"bootbot": "^1.0.16",
"cosmicjs": "^4.1.8",
"discord-api-types": "^0.36.1",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"include-all": "^4.0.3",
"json-to-table": "^4.2.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^6.4.3",
"node-fetch": "2",
"node-schedule": "^2.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rimraf": "^3.0.2",
"rollbar": "^2.25.0",
"ts-mongoose": "^0.0.24",
"typescript": "^4.7.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.4.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.0.3",
"chai": "^4.3.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.4.1",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.8.2"
},
"engines": {
"node": "16.x"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/build",
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}