forked from GarrettBurroughs/McServerPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 859 Bytes
/
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
{
"name": "mcserverconsole",
"version": "1.0.0",
"description": "A simple, lightweight and open source web console for monitoring and controlling minecraft servers",
"main": "server.js",
"scripts": {
"build": "cd app && npm run build && cd .. && node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:build": "cd app && npm run build",
"deploy:start": "node server.js",
"deploy": "run-s deploy:*",
"dev:server": "nodemon server.js",
"dev:client": "cd app && npm run serve",
"dev": "run-p dev:*"
},
"author": "Garrett Burroughs",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5"
}
}