-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "passpanda",
"version": "1.0.1",
"description": "Instantly create robust passwords and passphrases on the web",
"keywords": [
"password",
"passphrase",
"secure",
"generate",
"web"
],
"homepage": "https://github.com/jarne/passpanda",
"bugs": {
"url": "https://github.com/jarne/passpanda/issues"
},
"license": "MIT",
"author": {
"name": "Jarne",
"url": "https://github.com/jarne"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/jarne/passpanda.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:ci": "eslint --format junit --output-file ./lint-results/eslint/junit.xml .",
"format": "prettier --write \"**/*.{js,jsx,json,html,css,scss,yml,md}\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@vitejs/plugin-react": "^4.3.4",
"bootstrap": "^5.3.3",
"camelcase": "^8.0.0",
"omgopass": "^3.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"sass": "^1.71.1",
"vite": "^6.2.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsdoc": "^50.0.0",
"prettier": "^3.2.5",
"vite-plugin-eslint": "^1.8.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"type": "module",
"packageManager": "[email protected]"
}