-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "resume",
"description": "Print-optimized React version of my Resume",
"version": "1.0.0",
"author": "Maciej Sawicki",
"license": "MIT",
"scripts": {
"build:ci": "gatsby build --prefix-paths",
"serve:ci": "gatsby serve --prefix-paths",
"build": "gatsby build",
"serve": "gatsby serve",
"pdf:ci": "node pdf.js ci",
"pdf-sequence:ci": "concurrently --kill-others --success=first \"npm run serve:ci\" \"npm run pdf:ci\"",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx}",
"start": "npm run develop",
"deploy-manual": "gatsby build --prefix-paths && gh-pages -d public",
"pdf": "node pdf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Humberd/resume"
},
"engines": {
"node": "20.12.2"
},
"private": false,
"dependencies": {
"gatsby": "5.15.0",
"gatsby-image": "3.11.0",
"gatsby-plugin-manifest": "5.15.0",
"gatsby-plugin-react-helmet": "6.15.0",
"gatsby-plugin-sass": "6.15.0",
"gatsby-plugin-sharp": "5.15.0",
"gatsby-plugin-typescript": "5.15.0",
"gatsby-source-filesystem": "5.15.0",
"gatsby-transformer-sharp": "5.15.0",
"graphql": "16.12.0",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"sass": "1.94.2"
},
"devDependencies": {
"@types/puppeteer": "7.0.4",
"@types/react-helmet": "6.1.11",
"concurrently": "8.2.2",
"gh-pages": "6.1.1",
"prettier": "3.2.5",
"puppeteer": "22.7.1"
}
}