-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 KB
/
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
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
{
"name": "michaelhost",
"version": "1.1.8",
"license": "MIT",
"scripts": {
"build": "(cd admin_ui && yarn build) && ./build_dist",
"cli": "NODE_ENV=dev node ./bin/michaelhost.js",
"dev_node": "NODE_ENV=dev node ./bin/michaelhost.js service --admin-port 2002 --webhook-server-port 2001 --secret ${MICHAELHOST_SECRET:-notsuchasecret} --email $EMAIL",
"dev_react": "cd admin_ui && yarn start",
"lint": "eslint .",
"format": "prettier --write './lib/**/*.js' './bin/**/*.js' './admin_ui/src/**/*.js'"
},
"bin": {
"michaelhost": "bin/michaelhost.js"
},
"dependencies": {
"@root/acme": "^3.1.0",
"@root/csr": "^0.8.1",
"@root/keypairs": "^0.10.1",
"@root/pem": "^1.0.4",
"acme-http-01-webroot": "^3.0.0",
"apollo-server-express": "^2.21.1",
"body-parser": "^1.18.3",
"bunyan": "^1.8.15",
"bunyan-prettystream": "^0.1.3",
"commander": "^7.1.0",
"cookie": "^0.4.1",
"dockerode": "^3.2.1",
"express": "^4.16.3",
"global-agent": "^2.1.12",
"global-tunnel-ng": "^2.7.1",
"graphql": "^15.5.0",
"homedir": "^0.6.0",
"ip": "^1.1.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"node-forge": "^0.10.0",
"node-pty": "^0.10.0",
"openid-client": "^4.4.2",
"query-string": "^6.14.1",
"rollbar": "^2.21.0",
"secure-compare": "^3.0.1",
"semver": "^7.3.4",
"shell-quote": "^1.7.2",
"strip-ansi": "^6.0.0",
"ws": "^7.4.4"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"pkg": "^5.8.0",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-scripts": "^4.0.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"pkg": {
"assets": [
"./admin_ui/build/**/*"
]
}
}