-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.91 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": "keeplocal",
"version": "1.1.0",
"description": "Allows to control how local devices can data are shared with the cloud",
"keywords": [
"privacy",
"local network",
"lan",
"iot",
"home automation"
],
"license": "Apache-2.0",
"author": "Marco Fucci di Napoli <[email protected]> (https://www.linkedin.com/in/marco-fucci-di-napoli/)",
"repository": {
"type": "git",
"url": "https://github.com/mfucci/keeplocal.git"
},
"scripts": {
"clean": "rm -rf build",
"build": "tsc -p src/backend",
"build_web": "webpack --config webpack.config.js",
"build_web_prod": "webpack --config webpack.config.prod.js",
"lint": "eslint src/**/*.{ts,tsx} test/**/*",
"format": "tsfmt -r --useTsconfig ./src/backend/tsconfig.json; tsfmt -r --useTsconfig ./src/frontend/tsconfig.json; js-beautify --config js-beautify.json -r \"src/**/*.{js,html,css}\"",
"dev_web": "webpack serve",
"test": "mocha"
},
"devDependencies": {
"@types/default-gateway": "^3.0.1",
"@types/express": "^4.17.13",
"@types/ip": "^1.1.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@types/ping": "^0.4.1",
"@types/pouchdb": "^6.4.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/text-table": "^0.2.2",
"@types/ws": "^8.5.1",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"css-loader": "^6.6.0",
"esbuild-loader": "^2.18.0",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.0",
"file-loader": "^6.2.0",
"js-beautify": "^1.14.3",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "^9.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.7",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"typescript-formatter": "^7.2.2",
"uglify-js": "^3.15.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.3",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"@network-utils/arp-lookup": "^1.3.5",
"@network-utils/dhcp": "^1.0.10",
"@network-utils/vendor-lookup": "^1.0.0-4",
"dayjs": "^1.11.2",
"default-gateway": "^6.0.3",
"denamed": "^1.0.10",
"express": "^4.17.3",
"express-pouchdb": "^4.2.0",
"fast-equals": "^3.0.0",
"ip": "^1.1.5",
"macaddress": "^0.5.2",
"node-arp": "^1.0.6",
"ping": "^0.4.2",
"pouchdb": "^7.3.0",
"preferences": "^2.0.2",
"react-router-dom": "^6.2.2",
"text-table": "^0.2.0",
"timeago.js": "^4.0.2",
"ws": "^8.5.0",
"yargs": "^17.3.1"
},
"bin": {
"keeplocal": "./build/backend/Main.js"
}
}