-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "curriculum-vitae",
"version": "1.0.0",
"private": true,
"license": "MIT",
"dependencies": {
"@material-design-icons/svg": "^0.10.11",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"classnames": "^2.3.1",
"country-flag-icons": "^1.4.26",
"i18next": "^21.8.2",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^11.16.9",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"sanitize-html": "^2.7.0",
"typescript": "^4.6.4",
"usehooks-ts": "^2.5.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --ignore-path .gitignore .",
"deploy": "npm run build && node deploy.js",
"eject": "react-scripts eject",
"postbuild": "react-snap",
"format": "prettier --write .",
"format-check": "prettier --check .",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"reactSnap": {
"source": "./dist"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/sanitize-html": "^2.6.2",
"autoprefixer": "^10.4.7",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"react-snap": "^1.23.0",
"swr": "^1.3.0",
"tailwindcss": "^3.0.24"
}
}