-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 990 Bytes
/
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": "monday-whatsapp-tasks",
"version": "0.0.0",
"private": true,
"scripts": {
"prestart": "npm run build",
"start": "node ./bin/www",
"build": "./node_modules/.bin/tsc",
"pretest": "npm run build",
"test": "jest --runInBand"
},
"dependencies": {
"axios": "^0.19.0",
"bull": "^3.12.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"fuse.js": "^3.4.6",
"http-errors": "~1.6.3",
"ioredis": "^4.14.1",
"morgan": "~1.9.1",
"twilio": "^3.38.0",
"typescript": "^3.7.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bull": "^3.10.6",
"@types/express": "^4.17.2",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"nock": "^11.7.0",
"nodemon": "^2.0.2",
"stoppable": "^1.1.0"
},
"jest": {
"globalSetup": "./tests/setup.js",
"globalTeardown": "./tests/teardown.js",
"testEnvironment": "./tests/environment.js"
}
}