-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 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
{
"name": "@clearvox/callcontrol",
"description": "Realtime client for ClearVox Call Control",
"authors": [
{
"name": "Stijn Buurman",
"email": "stijnbuurman@gmail.com"
}
],
"license": "MIT",
"version": "0.0.2",
"public": true,
"main": "./dist/clearvox-callcontrol.umd.js",
"types": "./dist/types/index.d.ts",
"dependencies": {
"axios": "^0.18.0",
"socket.io-client": "1.7.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/node": "^9.6.0",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.3",
"@types/whatwg-url": "^6.4.0",
"ts-loader": "^4.1.0",
"typescript": "^3.3.3333",
"webpack": "4.8.3",
"webpack-cli": "2.1.4",
"webpack-node-externals": "^1.6.0"
},
"scripts": {
"watch:dev": "webpack --config webpack.dev.config.js --watch",
"build:dev": "webpack --config webpack.dev.config.js",
"watch:prod": "webpack --config webpack.prod.config.js --watch",
"build:prod": "webpack --config webpack.prod.config.js"
}
}