-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "whiteboard",
"version": "1.0.0",
"description": "realtime collaborative whiteboard",
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && node ./dist/server/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toturkmen/whiteboard.git"
},
"keywords": [
"realtime",
"collaborative",
"whiteboard"
],
"author": "Tolga",
"license": "MIT",
"bugs": {
"url": "https://github.com/toturkmen/whiteboard/issues"
},
"homepage": "https://github.com/toturkmen/whiteboard#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.1.3",
"css-minimizer-webpack-plugin": "^1.3.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.9",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"bootstrap": "^4.6.0",
"express": "^4.17.1",
"jquery": "^3.6.0",
"p5": "^1.3.0",
"socket.io": "^4.0.0",
"socket.io-client": "^4.0.0"
}
}