-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.03 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "way-home",
"version": "1.0.10",
"description": "WS Reverse proxy with strong authentication.",
"main": "dist/index.js",
"repository": "https://github.com/matijagaspar/way-home",
"homepage": "https://github.com/matijagaspar/way-home#README",
"author": "Matija Gaspar <[email protected]>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node tools/rundev.js",
"dev-client": "node tools/rundev.js client",
"dev-server": "node tools/rundev.js server",
"lint": "eslint ./src --fix",
"build": "node tools/rundev.js build",
"run-server": "node dist/index.js server",
"run-client": "node dist/index.js client",
"run-all": "node dist/index.js server client mock"
},
"files": [
"dist/*"
],
"bin": {
"way-home": "dist/index.js",
"way-home-pretty-logs": "tools/way-home-pretty-logs.js"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-flow": "^7.12.13",
"@babel/preset-stage-0": "^7.8.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-jsx-control-statements": "^4.1.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^9.1.0",
"memory-fs": "^0.5.0",
"ora": "^5.4.0",
"request-promise-native": "^1.0.5",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.5.6",
"webpack": "^4.44.1",
"webpack-logger-plugin": "^1.2.0"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"ajv": "^8.0.1",
"body-parser": "^1.18.3",
"chalk": "^4.1.0",
"core-js": "^3.9.1",
"express": "^4.18.2",
"express-session": "^1.15.6",
"fuse.js": "^6.4.6",
"http-headers": "^3.0.2",
"http-status": "^1.5.0",
"just-safe-get": "^1.2.1",
"lodash.debounce": "^4.0.8",
"lowdb": "1.0.0",
"memorystore": "^1.6.0",
"next": "^12.3.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^1.0.0",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"polished": "^4.2.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-flip-toolkit": "^7.0.13",
"react-is": "^17.0.2",
"secure-pin": "^1.0.14",
"styled-components": "^5.2.1",
"undici": "^5.11.0",
"whatwg-url": "^6.5.0",
"ws": "^8.9.0",
"yargs": "^17.6.0"
}
}