forked from Govindraj786/RPMDoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "sdk-starter-node",
"version": "1.0.0",
"description": "Starter Server Application for Node.js",
"main": "app.js",
"scripts": {
"start": "node app.js",
"debug": "nodemon --inspect-brk server.js",
"test": "NODE_ENV=test && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TwilioDevEd/sdk-starter-node.git"
},
"author": "Twilio Developer Education",
"license": "MIT",
"bugs": {
"url": "https://github.com/TwilioDevEd/sdk-starter-node/issues"
},
"homepage": "https://github.com/TwilioDevEd/sdk-starter-node#readme",
"dependencies": {
"body-parser": "^1.19.0",
"camelcase": "^6.2.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"extend": "^3.0.2",
"nodemon": "^2.0.20",
"pug": "^3.0.2",
"twilio": "^3.66.0"
},
"devDependencies": {
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"jsonwebtoken": "^8.5.1"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
]
}
}