-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
{
"name": "resume",
"version": "2.0.0",
"private": true,
"homepage": "/resume",
"dependencies": {
"@emailjs/browser": "^4.1.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-anime": "^0.3.4",
"react-dom": "^18.2.0",
"react-material-ui-form-validator": "^3.0.1",
"react-scripts": "^5.0.1",
"react-scroll": "^1.6.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build-html && npm run build-pdf && npm run build-seo && react-scripts build",
"build-html": "cd src && resumed render -o ../public/cv.html -t jsonresume-theme-even && cd ..",
"build-pdf": "html-export-pdf-cli ./public/cv.html -o ./public/cv.pdf",
"build-seo": "node buildSeo.js",
"prettify-all": "prettier . --write",
"test": "CI=true react-scripts test env=jsdom",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject"
},
"hooks": {
"pre-commit": "pretty-quick --staged"
},
"devDependencies": {
"eslint-plugin-prettier": "^5.1.3",
"gh-pages": "^6.1.1",
"html-export-pdf-cli": "^1.1.5",
"husky": "^9.0.11",
"jsonresume-theme-even": "^0.22.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"pug": "^3.0.2",
"puppeteer": "^22.2.0",
"resumed": "^3.0.1",
"sass": "^1.71.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}