-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "collaborative-canvas",
"version": "1.0.0",
"description": "Real time user collaboration over canvas",
"main": "index.js",
"repository": "git@github.com:babbarshaer/collaborative-canvas.git",
"author": "Abhimanyu Babbar <abhimanyu.babbar@wrapp.com>",
"license": "Apache-2.0",
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.17.1",
"bunyan": "^1.8.10",
"canvas": "^1.6.5",
"classnames": "^2.2.5",
"express": "^4.15.2",
"fabric": "^1.7.9",
"lowdb": "^0.16.2",
"react": "^15.5.4",
"react-color": "^2.11.4",
"react-dom": "^15.5.4",
"react-modal": "^1.7.7",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"socket.io": "^1.7.3",
"uuid": "^3.0.1"
},
"devDependencies": {
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"server": "webpack-dev-server --content-base public/build --hot --inline",
"build": "webpack",
"start": "node server.js"
}
}