This repository was archived by the owner on Mar 25, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.7 KB
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
{
"name": "authme-lite",
"version": "0.9.0",
"author": "Levminer",
"license": "GPL-3.0",
"scripts": {
"start": "node scripts/alpha-build.js && tauri dev",
"build": "node scripts/release-build.js && tauri build && node scripts/rename.js",
"build:alpha": "node scripts/alpha-build.js && tauri build && node scripts/rename.js",
"build:bundle": "cross-env NODE_ENV=production webpack --config .webpackrc.js",
"server": "cross-env NODE_ENV=development webpack serve --config .webpackrc.js",
"lint": "eslint --fix .",
"eslint": "eslint ."
},
"dependencies": {
"@levminer/speakeasy": "^1.4.0",
"bcryptjs": "^2.4.3",
"qrcode-decoder": "^0.2.2",
"simple-crypto-js": "^3.0.1",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@swc/core": "^1.2.187",
"@tauri-apps/api": "^1.0.1",
"@tauri-apps/cli": "^1.0.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"postcss": "^8.4.14",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"react": "^17.0.2",
"react-activation": "^0.11.1",
"react-dom": "^17.0.2",
"react-router-dom": "^6.3.0",
"style-loader": "^3.3.1",
"swc-loader": "^0.2.1",
"tailwindcss": "^3.0.24",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}