-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.87 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "lbmm",
"version": "1.0.5",
"scripts": {
"server-start": "cross-env NODE_ENV=development ts-node server/src/index.ts",
"server-compile": "rimraf server/dist && cross-env NODE_ENV=production tsc -p server/tsconfig.json",
"server-dev": "cross-env NODE_ENV=development nodemon server/src/index.ts --watch server",
"client-compile": "cross-env NODE_ENV=production webpack --config client/webpack.config.ts",
"client-dev": "webpack-dev-server --config client/webpack.config.ts",
"icon": "pwa-asset-generator ./assets/image.png ./public/icons -i ./public/index.html -m public/site.webmanifest --icon-only --favicon --opaque false",
"executable": "concurrently \"npm run server-compile\" \"npm run client-compile\" && nexe server/dist/index.js --name LBMM --icon assets/iconset.ico --build --verbose",
"pack": "cd portable && bestzip ../LBMM.zip *",
"preportable": "rimraf portable",
"portable": "npm run executable -- -o portable/LBMM.exe",
"postportable": "copyfiles *.vbs settings.json locales/* assets/* public/**/* node_modules/**/*.node node_modules/**/*.exe portable && npm run pack",
"dev": "concurrently \"npm run client-dev\" \"npm run server-dev\"",
"build": "npm run executable -- -o LBMM.exe",
"build-all": "concurrently \"npm run build\" \"npm run portable\"",
"clean": "rimraf LBMM.exe portable dist LBMM.zip logs.txt",
"lint": "eslint --ext=.jsx,.js,.tsx,.ts server,client --quiet --fix",
"postinstall": "patch-package",
"bump": "npm version patch -m \"Bump version to %s\"",
"typesync": "typesync --ignorepackages=luxon"
},
"author": "VinceBT",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"chrome-launcher": "^0.15.0",
"classnames": "^2.3.1",
"exiftool-vendored": "^14.0.0",
"i18next": "^21.6.11",
"lodash": "^4.17.21",
"node-native-dialog": "^1.0.1",
"node-window-manager": "^2.2.4",
"open": "^8.4.0",
"p-queue": "^6.6.2",
"portfinder": "^1.0.28",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.9.0",
"reflect-metadata": "^0.1.13",
"systray2": "^2.1.4",
"typedi": "^0.10.0",
"typesync": "^0.8.0",
"webpack": "^5.69.0",
"windows-shortcuts": "^0.1.6",
"ws": "^8.5.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@types/copyfiles": "^2.4.1",
"@types/eslint": "^8.4.1",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/lodash": "^4.14.178",
"@types/luxon": "^2.0.9",
"@types/node": "^14.14.31",
"@types/nodemon": "^1.19.1",
"@types/prettier": "^2.4.4",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/rimraf": "^3.0.2",
"@types/wait-on": "^5.3.1",
"@types/webpack": "^5.28.0",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"bestzip": "^2.2.0",
"concurrently": "^7.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"nexe": "^4.0.0-beta.19",
"nodemon": "^2.0.15",
"patch-package": "^6.4.7",
"prettier": "^2.5.1",
"pwa-asset-generator": "^6.0.6",
"react-refresh": "^0.11.0",
"react-refresh-typescript": "^2.0.3",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"type-fest": "^2.11.2",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"wait-on": "^6.0.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}