-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "TTSOnDemand",
"version": "0.0.1",
"author": {
"name": "Lars Voigt",
"email": "[email protected]",
"description": ""
},
"repository": {
"type": "git",
"url": "https://github.com/GermanCentralLibraryForTheBlind/TTSOnDemand.git"
},
"dependencies": {
"adm-zip": "^0.4.7",
"ansi-to-html": "^0.4.2",
"body-parser": "^1.15.2",
"bootstrap-slider": "^9.5.3",
"cheerio": "~0.22.0",
"colors": "^1.1.2",
"cors": "^2.7.1",
"es6-promise-polyfill": "^1.2.0",
"express": "^4.14.0",
"fs": "0.0.2",
"fs-extra": "^1.0.0",
"http": "0.0.0",
"https": "^1.0.0",
"ip": "^1.1.4",
"lockfile": "^1.0.2",
"moment": "^2.16.0",
"morgan": "^1.7.0",
"pm2": "^2.1.4",
"public-ip": "^2.0.1",
"querystring": "^0.2.0",
"request": "^2.74.0",
"rimraf": "^2.5.4",
"semaphore": "^1.0.5",
"spinkit": "^1.2.5",
"ua-parser": "^0.3.5",
"underscore": "^1.8.3",
"unzip": "^0.1.11",
"url": "^0.11.0",
"wait-until": "0.0.2"
},
"scripts": {
"tts-webservice": "node src/server/tts-webservice.js",
"tts-webservice-prod": "node_modules/.bin/pm2 start ecosystem.config.js",
"tts-webservice-prod-state": "./node_modules/.bin/pm2 show tts-webservice",
"restart-service": "./node_modules/.bin/pm2 restart all",
"logs": "./node_modules/.bin/pm2 logs",
"flush-logs": "./node_modules/.bin/pm2 flush",
"kill-service": "./node_modules/.bin/pm2 stop ecosystem.config.js",
"webservice-test": "src/server/test/test-tts-webservice.js",
"build-bundle": "node_modules/.bin/browserify -t node-lessify -t brfs src/client/reader2.js > public/bundle.js && node_modules/.bin/browserify -t node-lessify -t brfs -t uglifyify src/client/reader2.js > public/bundle-prod.js",
"watchify-bundle": "node_modules/.bin/watchify -t node-lessify -t brfs src/client/reader2.js -o public/bundle.js -v",
"clean": "node ./node_modules/.bin/rimraf tmp/* && node ./node_modules/.bin/rimraf error/*"
},
"devDependencies": {
"backbone": "^1.3.3",
"brfs": "^1.4.3",
"browserify": "^13.1.0",
"browserify-shim": "^3.8.12",
"cssify": "^1.0.3",
"jquery": "^3.1.0",
"node-lessify": "^0.1.4",
"node-uuid": "^1.4.7",
"standard": "^8.0.0",
"uglifyify": "^3.0.4",
"watchify": "^3.7.0"
}
}