-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "StackNotifier",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "NODE_PATH=./build node .build/index.js",
"build": "tsc && tsc-alias",
"dev": "nodemon -r tsconfig-paths/register index.ts",
"test": "jest --verbose"
},
"dependencies": {
"axios": "^0.26.1",
"bull": "^4.8.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"ioredis": "^5.0.4",
"node-mailjet": "^3.3.13",
"node-schedule": "^2.1.0",
"twilio": "^3.76.1"
},
"devDependencies": {
"@types/bull": "^3.15.8",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/node-mailjet": "^3.3.8",
"@types/node-schedule": "^1.3.2",
"ioredis-mock": "^7.2.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsc": "^2.0.4",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
}
}