forked from TwilioDevEd/browser-dialer-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (39 loc) · 1.19 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": "browser-dailer-react",
"version": "1.0.0",
"description": "A browser-based dialer UI powered by Twilio Client",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test TWILIO_ACCOUNT_SID=my-account-sid TWILIO_AUTH_TOKEN=my-auth-token TWILIO_NUMBER=my-twilio-number TWILIO_TWIML_APP_SID=app-sid ./node_modules/mocha/bin/mocha spec --recursive"
},
"author": "Twilio DevEd",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"dotenv-safe": "^3.0.0",
"express": "^4.14.0",
"twilio": "~3.0.0",
"@angular/common": "~2.2.3",
"@angular/compiler": "~2.2.3",
"@angular/core": "~2.2.3",
"@angular/forms": "~2.2.3",
"@angular/http": "~2.2.3",
"@angular/platform-browser": "~2.2.3",
"@angular/platform-browser-dynamic": "~2.2.3",
"@angular/router": "~3.2.3",
"@angular/upgrade": "~2.2.3",
"angular-in-memory-web-api": "~0.1.16",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-rc.4",
"zone.js": "^0.7.2"
},
"devDependencies": {
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"mocha": "^3.1.2",
"supertest": "^2.0.1"
}
}