-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.27 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.27 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
{
"name": "yopass",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/roboto": "^4.5.3",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@mui/material": "^5.4.4",
"file-saver": "^2.0.5",
"i18next": "^21.6.10",
"i18next-browser-languagedetector": "^6.1.3",
"i18next-http-backend": "^1.3.2",
"openpgp": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.5.1",
"react-hook-form": "^6.15.8",
"react-i18next": "^11.15.3",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.0",
"react-use": "^17.3.2",
"swr": "^1.2.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cypress run",
"eject": "react-scripts eject",
"format": "prettier --ignore-path .gitignore -c --write .",
"lint": "prettier --ignore-path .gitignore -c .",
"cypress": "cypress open",
"cy:run": "cypress run",
"ci": "start-server-and-test start http://localhost:3000 cy:run"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.21",
"@types/openpgp": "^4.4.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/react-dropzone": "^5.1.0",
"@types/react-router-dom": "^5.3.3",
"cypress": "^9.5.2",
"cypress-file-upload": "^5.0.8",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1",
"start-server-and-test": "^1.14.0",
"typescript": "^4.5.5"
},
"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"
]
}
}