-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "rotisserietv",
"version": "0.0.2",
"description": "webapp for viewing the most exciting Battle Royale",
"main": "index.js",
"scripts": {
"dev": "npm-run-all -s sass:build -p babel sass:watch",
"sass:build": "node-sass --include-path scss src/scss/main.scss public/css/main.css",
"sass:watch": "sass --watch src/scss/main.scss:public/css/main.css",
"babel": "babel ./src/js/ -d ./public/js/ -w"
},
"author": "Cullen Taylor",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IBM/rotisserie.git"
},
"dependencies": {
"eslint": "^4.8.0",
"eslint-config-google": "^0.9.1",
"express": "^4.16.3",
"fluent-ffmpeg": "^2.1.2",
"gm": "^1.23.1",
"hbs": "^4.0.1",
"hoek": "^5.0.3",
"log": "^1.4.0",
"mime": "^1.4.1",
"multer": "^1.3.0",
"node-tesseract": "https://github.com/desmondmorris/node-tesseract.git",
"node-uuid": "^1.4.8",
"request": "^2.87.0",
"workerpool": "^2.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"node-sass": "^4.9.2",
"npm-run-all": "^2.2.2"
}
}