forked from pin3da/poolparty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 709 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 709 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
{
"name": "poolparty",
"version": "0.0.1",
"private": true,
"scripts": {
"watch-js": "watchify browser/main.js -o public/js/bundle.js -dv",
"build-js": "browserify browser/main.js -o public/js/bundle.js",
"start-dev": "npm run watch-js & node ./bin/www",
"start": "npm run build-js && node ./bin/www"
},
"dependencies": {
"body-parser": "^1.20.3",
"browserify": "^17.0.0",
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"debug": "~4.3.4",
"ejs": "~3.1.10",
"express": "^4.21.2",
"handlebars": "^4.7.8",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0",
"socket.io": "^4.8.0",
"socket.io-client": "^4.7.2",
"watchify": "^4.0.0"
}
}