-
Notifications
You must be signed in to change notification settings - Fork 664
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.23 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.23 KB
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
{
"name": "blockly-realtime-demo",
"version": "0.0.0",
"private": true,
"scripts": {
"audit": "npm audit fix",
"update": "npm update",
"build": "npm run build:frontend",
"build:frontend": "rimraf ./build && webpack",
"serve-http": "concurrently \"npm run serve:frontend\" \"npm run serve:backend-http\"",
"serve-websocket": "concurrently \"npm run serve:frontend\" \"npm run serve:backend-websocket\"",
"serve:backend-http": "node server/http_server.js",
"serve:backend-websocket": "node server/websocket_server.js",
"serve:frontend": "webpack-dev-server",
"start": "npm run start-websocket",
"start-http": "npm run build && npm run serve-http",
"start-websocket": "npm run build && npm run serve-websocket",
"test": "mocha test/*test.js"
},
"dependencies": {
"@vscode/sqlite3": "^5.0.8",
"blockly": "^12.0.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^5.1.2",
"mocha": "^10.7.0",
"node-gyp": "^9.0.0",
"rimraf": "^3.0.2",
"sinon": "^7.5.0",
"tslib": "^2.6.3",
"webpack": "^5.104.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.1"
}
}