-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 KB
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
{
"name": "sample-template-node",
"version": "1.0.0",
"private": true,
"main": "./src/index.js",
"scripts": {
"start": "node .",
"start:ci": "cross-env NODE_ENV=test npm start",
"setup": "configure-env",
"pretest": "cross-env NODE_ENV=test",
"test": "eslint . && mocha test",
"test:ci": "cross-env NODE_ENV=test run-s test cypress:ci",
"preci": "npm run test",
"cypress": "cypress run",
"cypress:ci": "server-test start:ci http://localhost:3000 cypress",
"format": "eslint . --fix",
"dev": "nodemon ."
},
"description": "Node.js template for Twilio sample apps",
"author": {
"name": "Twilio",
"email": "open-source@twilio.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/sample-template-node"
},
"keywords": [
"node",
"twilio",
"express"
],
"engines": {
"node": ">=10.x"
},
"dependencies": {
"body-parser": "^1.19.0",
"configure-env": "^1.0.0",
"cookie-parser": "~1.4.5",
"debug": ">=4.3.1",
"express": "^4.17.1",
"express-handlebars": "^5.3.0",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0",
"twilio": "^3.61.0"
},
"devDependencies": {
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"cypress": "^7.2.0",
"dotenv-safe": "^8.2.0",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.3.2",
"nock": "^13.0.11",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"start-server-and-test": "^1.12.1",
"supertest": "^6.1.3"
}
}