-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 807 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 807 Bytes
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
{
"private": true,
"name": "radio-node",
"version": "0.0.1",
"description": "Radio Node - streaming service for myownradio",
"scripts": {
"start": "node dist/server.js",
"test": "jest",
"tslint": "tslint",
"build": "tsc"
},
"engines": {
"node": ">=7.9.0"
},
"author": "Roman Lakhtadyr <roman.lakhtadyr@gmail.com>",
"devDependencies": {
"@types/express": "^4.0.35",
"@types/node": "^7.0.13",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
},
"dependencies": {
"dotenv": "^4.0.0",
"express": "^4.15.2",
"fluent-ffmpeg": "^2.1.0",
"lodash": "^4.17.4",
"node-rest-client": "^3.0.7",
"node-rest-client-promise": "^2.0.0",
"pug": "^2.0.0-beta.12",
"shelljs": "^0.7.7",
"throttle": "^1.0.3",
"winston": "^2.3.1"
}
}