-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "playit-api",
"version": "1.0.0",
"description": "Playit API for Web/Mobile/Desktop APP",
"main": "dist",
"scripts": {
"start": "npm run version && export DEBUG=PL:* && nodemon -x 'ts-node src/server.ts;'",
"start:local": "export NODE_ENV=development ; export DEBUG=PL:* && nodemon -x 'ts-node src/server.ts;'",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prebuild": "npm run lint && rm -rf ./dist/src/* && rm -rf ./dist/test/*",
"build": "npm run build-ts",
"build:direct": "npm run build-ts",
"build-ts": "tsc",
"serve-build": "export DEBUG=PL:* && npm run version && node dist/src/server.js",
"unit": "mocha -r ts-node/register --config test/.mocharc.json",
"posttest": "npm run lint",
"version": "echo 'youtube-dl' ; ./node_modules/youtube-dl/bin/youtube-dl --version"
},
"cacheDirectories": [
"media",
"app/dist/media",
"dist/media"
],
"engines": {
"node": "10.16.3",
"npm": "6.9.0"
},
"author": "Bhushankumar L (bhushankumar.lilapara@gmail.com)",
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"boom": "^7.3.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"debug": "^4.3.1",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"ffmpeg-static": "^4.2.7",
"find": "^0.3.0",
"fs-extra": "^9.1.0",
"googleapis": "^67.1.1",
"googleapis-common": "^5.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-pre-gyp": "^0.14.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"path": "^0.12.7",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"typeorm": "^0.2.31",
"uuid": "^8.3.2",
"youtube-dl": "^3.0.2",
"youtube-dl-exec": "^1.1.3"
},
"devDependencies": {
"@typeform/eslint-config": "^3.0.2",
"@types/bluebird": "^3.5.33",
"@types/body-parser": "^1.19.0",
"@types/boom": "^7.3.0",
"@types/chai": "^4.2.15",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.10",
"@types/cron": "^1.7.2",
"@types/debug": "4.1.5",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.11",
"@types/find": "^0.2.1",
"@types/fs-extra": "^9.0.8",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@types/passport": "^1.0.6",
"@types/passport-http-bearer": "^1.0.36",
"@types/request-promise": "^4.1.47",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/youtube-dl": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.3.4",
"chai-as-promised": "~7.1.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-spellcheck": "0.0.17",
"mocha": "^8.3.2",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}