This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.94 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": "twilio-callcenter-server",
"version": "1.0.0",
"description": "A Server for supporting our twilio enviroment",
"main": "app.js",
"scripts": {
"test": "mocha --recursive",
"debug": "node --nolazy --inspect-brk=9229 src/app.js | pino-pretty -t -i hostname,pid",
"start": "nodemon src/app.js | pino-pretty -t -i hostname,pid",
"coverage": "nyc --reporter=text --reporter=html mocha --recursive --exit --timeout 15000 && open coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brainomite/twilio-callcenter-server.git"
},
"keywords": [
"twilio",
"taskrouter",
"studio"
],
"author": "MANYC",
"license": "MIT",
"bugs": {
"url": "https://github.com/brainomite/twilio-callcenter-server/issues"
},
"homepage": "https://github.com/brainomite/twilio-callcenter-server#readme",
"dependencies": {
"airtable": "^0.8.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^6.0.0",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.28",
"pino": "^6.2.1",
"twilio": "^3.62.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"husky": "^4.2.5",
"lint-staged": "^11.0.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"pino-pretty": "^4.0.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged",
"pre-push": "npm test",
"...": "..."
}
},
"lint-staged": {
"*.{js, json}": [
"prettier --write",
"eslint --fix"
]
}
}