-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "syncpaint",
"version": "0.8.0",
"license": "GPL-3.0-only",
"description": "A web app for synchronized group drawing",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build-prod": "webpack -p",
"watch": "webpack --watch"
},
"keywords": [
"group drawing",
"synchronized drawing",
"synchronized paint",
"online whiteboard"
],
"author": "pkrasicki",
"repository": {
"type": "git",
"url": "https://github.com/pkrasicki/SyncPaint.git"
},
"devDependencies": {
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^7.3.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"express": "^4.17.1",
"lato-font": "^3.0.0",
"socket.io": "^2.4.1"
}
}