-
Notifications
You must be signed in to change notification settings - Fork 302
/
Copy pathpackage.json
87 lines (87 loc) · 2.28 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
{
"name": "yopass",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.12",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/material": "^5.15.14",
"file-saver": "^2.0.5",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.0",
"openpgp": "^5.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.2",
"react-i18next": "^14.1.0",
"react-router-dom": "^6.22.3",
"react-use": "^17.5.0",
"swr": "^2.2.5"
},
"scripts": {
"start": "vite --host",
"build": "vite build",
"test": "cypress run",
"format": "prettier --ignore-path .gitignore -c --write .",
"lint": "prettier --ignore-path .gitignore -c .",
"cypress": "cypress open",
"cy:run": "cypress run -b chrome",
"ci": "start-server-and-test start http://localhost:3000 cy:run"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/openpgp": "^4.4.22",
"@types/react": "^18.2.72",
"@types/react-dom": "^18.2.22",
"@types/react-dropzone": "^5.1.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.2.1",
"cypress": "^13.7.1",
"cypress-file-upload": "^5.0.8",
"dotenv": "^16.4.5",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"start-server-and-test": "^2.0.3",
"typescript": "^5.4.3",
"vite": "^5.2.6"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:import/errors",
"plugin:import/typescript",
"plugin:cypress/recommended"
],
"rules": {
"import/no-namespace": [
"error"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}