-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 983 Bytes
/
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
{
"name": "node-tts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"dev:monitor": "nodemon src/monitor/server.js",
"dev:server1": "nodemon src/server2/server.js",
"dev:server2": "nodemon src/server2/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helderburato/node-tts.git"
},
"keywords": [],
"author": "Helder Burato Berto <[email protected]> (https://helder.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/helderburato/node-tts/issues"
},
"homepage": "https://github.com/helderburato/node-tts#readme",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.1.0",
"nodemon": "^1.19.4"
},
"dependencies": {
"axios": "^0.19.0",
"dotenv": "^8.2.0",
"totalvoice-node": "^1.8.0"
}
}