-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 895 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 895 Bytes
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
{
"name": "imagecompositor",
"version": "1.0.0",
"description": "Image compositing tool on top of <canvas>",
"main": "src/js/server/server.js",
"dependencies": {
"body-parser": "1.15.1",
"connect-mongodb-session": "^1.3.0",
"express": "^4.14.1",
"express-session": "1.13.0",
"konva": "^1.3.0",
"passport": "0.3.2",
"passport-local": "1.0.0",
"path": "^0.12.7",
"socket.io": "^1.7.2",
"url-parse": "^1.1.7"
},
"devDependencies": {
"browser-sync": "^2.18.6",
"webpack": "^1.14.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "webpack ./src/js/main.js ./js/app.js",
"dev": "node src/js/server/server.js",
"start": "node src/js/server/server.js"
},
"keywords": [
"canvas",
"image",
"composition",
"save"
],
"author": "Andrea Padovani",
"license": "ISC"
}