This repository has been archived by the owner on Jun 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 2.06 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
{
"name": "open-ready-for",
"version": "0.0.1",
"description": "Open-source and cross-platform Motorola Ready-for remote connector.",
"main": "main.ts",
"scripts": {
"start": "node ./build/main.js",
"build:all": "npm run build:client && npm run build:ugly",
"build:dev:client": "webpack --mode=development",
"build:client": "webpack --mode=production --node-env=production",
"build:server": "rimraf ./build && tsc",
"build:ugly": "npm run build:server && npm run uglify",
"uglify": "uglifyjs-folder ./build -e -x .js -o ./build",
"release": "standard-version",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"watch": "webpack --watch"
},
"author": "Fabio Di Stasio",
"license": "MIT",
"dependencies": {
"bulma": "^0.9.3",
"compression": "^1.7.4",
"express": "^4.17.1",
"moment": "^2.29.1",
"qrcode": "^1.4.4"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/compression": "^1.7.1",
"@types/express": "^4.17.13",
"@types/node": "^14.14.41",
"@types/node-schedule": "^1.3.1",
"@types/node-windows": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@webpack-cli/generators": "^2.4.1",
"babel-loader": "^8.2.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.5.1",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.4",
"node-downloader-helper": "^1.0.18",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"standard-version": "^9.3.1",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"uglify-js": "^3.14.1",
"uglifyjs-folder": "^3.0.0",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1"
}
}