-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "dada-photo-booth",
"version": "1.0.0",
"description": "Containerized version of the Dada Photo Booth",
"main": "dist/index.js",
"bin": {
"dpb-server": "dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "babel --optional runtime src -d dist && cp ./node_modules/opencv/data/haarcascade_frontalface_alt.xml src/face.xml && cp ./node_modules/opencv/data/haarcascade_frontalface_alt.xml dist/face.xml",
"check": "npm run lint -s",
"clean": "rimraf dist",
"lint": "semistandard",
"prebuild": "npm run check -s && npm run clean -s",
"prepublish": "npm run build -s",
"sample": "babel-node sample/index.js",
"start": "npm run build && node dist/index.js",
"watch": "watch 'npm run build' src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vurvco/dada-photo-booth.git"
},
"author": "Chris B & Adam Z",
"license": "MIT",
"bugs": {
"url": "https://github.com/vurvco/dada-photo-booth/issues"
},
"homepage": "https://github.com/vurvco/dada-photo-booth#readme",
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.6.0",
"is-buffer": "^1.1.2",
"isparta": "^4.0.0",
"rimraf": "^2.5.2",
"semistandard": "^11.0.0",
"socket.io-client": "^1.4.5",
"watch": "^0.17.1"
},
"dependencies": {
"dotenv": "^5.0.0",
"easyimage": "^3.0.1",
"estraverse-fb": "^1.3.2",
"firebase-admin": "^5.9.0",
"opencv": "^5.0.0",
"request": "^2.69.0",
"socket.io": "^1.4.5",
"twitter": "^1.7.1",
"uuid": "^3.1.0"
}
}