-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.26 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.26 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
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
108
109
{
"name": "locker-password-manager",
"version": "1.0.0",
"private": true,
"dependencies": {
"@lockerpm/client-service": "^1.2.2",
"@lockerpm/design": "^1.0.17",
"apexcharts": "^3.44.2",
"axios": "^1.15.0",
"big-integer": "^1.6.51",
"browser-hrtime": "^1.1.8",
"buffer": "^6.0.3",
"craco-less": "^2.0.0",
"credit-card-type": "^10.0.0",
"crypto-browserify": "^3.12.1",
"dotenv": "^16.3.1",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.1.0",
"extract-domain": "^4.1.5",
"fs": "^0.0.1-security",
"i18next": "^22.5.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
"moment": "^2.29.4",
"node-forge": "^1.3.3",
"papaparse": "^5.4.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"react-intl": "^6.0.5",
"react-qr-code": "^2.0.8",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-slick": "^0.29.0",
"react-use-websocket": "^4.4.0",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"slick-carousel": "^1.8.1",
"stream-browserify": "^3.0.0",
"sweetalert2": "^10.16.7",
"tailwindcss": "^3.3.2",
"tldjs": "^2.3.1",
"totp-generator": "^0.0.14",
"url": "^0.11.1",
"web-vitals": "^2.1.4",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^6.4.5",
"@types/node-forge": "^1.3.3",
"@types/papaparse": "^5.3.7",
"@types/tldjs": "^2.3.1",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"babel-plugin-import": "^1.13.8",
"electron": "^27.1.0",
"electron-builder": "^24.6.4",
"env-cmd": "^10.1.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"sass": "^1.69.0",
"typescript": "^5.1.6"
},
"scripts": {
"start": "set PORT=3002 && set HTTPS=true&&env-cmd -e development craco start",
"start:mac": "PORT=3002 HTTPS=true env-cmd -e development craco start",
"build:dev": "env-cmd -e development craco build",
"build:stg": "env-cmd -e staging craco build",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"sub:init": "git submodule update --force --recursive --init --remote",
"sub:pull": "git submodule foreach git pull --recurse-submodules origin password",
"sub:update": "git submodule update --remote",
"superclean": "yarn prettier && yarn lint:fix",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"svgo": "^4.0.1",
"serialize-javascript": "^7.0.3",
"nth-check": "^2.0.1",
"@tootallnate/once": "^3.0.1"
}
}