forked from networkcobwebs/minecraft-server-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.98 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@networkcobwebs/minecraft-server-manager",
"version": "1.14.14",
"description": "Minecraft Server Manager",
"main": "src/api/MinecraftApi.js",
"bin": "./index.js",
"scripts": {
"start": "node index.js",
"start-dev": "pushd src/web && react-scripts start && popd",
"build-web": "pushd src/web && react-scripts build && popd",
"test-backend": "npm run lint && nyc mocha --recursive --reporter mochawesome --reporter-options reportDir=./test-results",
"test-web": "pushd src/web && react-scripts test --env=jsdom && popd",
"eject": "pushd src/web && react-scripts eject && popd",
"lint": "semistandard",
"lint-fix": "semistandard --fix"
},
"proxy": "http://localhost:3001",
"repository": {
"type": "git",
"url": "git@github.com:networkcobwebs/minecraft-server-manager.git"
},
"bugs": {
"url": "https://github.com/networkcobwebs/minecraft-server-manager/issues"
},
"keywords": [
"nodejs",
"reactjs",
"express",
"minecraft",
"server"
],
"author": {
"name": "nickrnet",
"url": "https://github.com/nickrnet/"
},
"contributors": [
{
"name": "DevBonBon",
"url": "https://github.com/DevBonBon/"
}
],
"license": "Apache-2.0",
"dependencies": {
"acorn": "^6.3.0",
"ajv": "^6.10.2",
"ajv-keywords": "^3.4.1",
"archiver": "^3.1.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.16.2",
"fs-extra": "^8.1.0",
"passport": "^0.4.0",
"permission": "^1.1.0",
"prop-types": "^15.7.2",
"react-scripts": "^3.0.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"expect": "^24.8.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"mochawesome": "^4.1.0",
"mock-fs": "^4.10.1",
"nyc": "^14.1.1",
"semistandard": "^14.0.1"
},
"engines": {
"node": ">=10.16.0"
},
"publishConfig": {
"access": "public"
}
}