-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "demo-encoder",
"version": "2.0.0",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"compile": "npm run clean && tsc -p src/tsconfig.app.json",
"watch": "npm run clean && tsc -w -p src/tsconfig.app.json",
"start": "node dist/bin/www.js",
"test": "mocha --reporter spec --compilers ts:ts-node/register 'src/**/*.spec.ts'",
"lint": "tslint -c ./tslint.json 'src/**/*.ts' --exclude 'src/**/*.d.ts'",
"nodemon": "nodemon --watch ./dist dist/bin/www.js"
},
"author": "RealEyes Media LLC, phil@realeyes.com",
"license": "ISC",
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/body-parser": "^1.16.4",
"@types/express": "^4.0.36",
"@types/mime": "^2.0.0",
"@types/multer": "^1.3.3",
"@types/node": "^8.0.4",
"@types/pino": "^3.0.1",
"@types/promisify-node": "^0.4.0",
"nodemon": "^1.11.0",
"tslint": "^5.4.3"
},
"dependencies": {
"async": "^2.5.0",
"aws-sdk": "^2.6.11",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"debug": "~4.1.0",
"express": "^4.15.3",
"express-pino-logger": "^2.0.0",
"fluent-bento4": "^1.0.7",
"fluent-ffmpeg": "^2.1.2",
"mime": "^2.0.3",
"multer": "^1.2.0",
"pino": "^4.6.0",
"promisify-node": "^0.4.0",
"pug": "^2.0.0-rc.4",
"request-promise-native": "^1.0.4",
"rimraf": "^2.5.4",
"serve-favicon": "^2.4.5",
"typescript": "^2.5.3"
}
}