-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 966 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
30
31
32
{
"name": "web",
"version": "0.0.1",
"description": "Rudimentary web interface for minecraft server",
"main": "index.mjs",
"scripts": {
"start": "node --unhandled-rejections=strict index.mjs",
"test": "node_modules/nodemon/bin/nodemon.js --exec node_modules/jest/bin/jest.js --config=jest.config.js",
"lint": "node_modules/nodemon/bin/nodemon.js --exec node_modules/eslint/bin/eslint.js --fix ."
},
"author": "https://github.com/FrankDeGroot",
"repository": "https://github.com/FrankDeGroot/mcweb",
"license": "MIT",
"dependencies": {
"nodemon": "^3",
"rcon-client": "^4",
"socket.io": "^4"
},
"devDependencies": {
"@babel/preset-env": "^7",
"babel-jest": "^27",
"eslint": "^7",
"eslint-config-standard": "^16",
"eslint-plugin-import": "^2",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^5",
"jest": "^27"
},
"optionalDependencies": {
"applicationinsights": "^2"
}
}