-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.06 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": "gatsby-cv-maker",
"private": true,
"description": "A free and open source CV maker using GatsbyJS",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"dev": "gatsby develop -H 0.0.0.0 -o",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"show": "gatsby clean && gatsby build && gatsby serve -o",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"extract": "npx babel --config-file ./babel-extract.config.js -o tmp/chunk.js 'src/**/*.{js,jsx,ts,tsx}' && rm -rf tmp"
},
"dependencies": {
"@babel/core": "^7.17.5",
"@fontsource/montserrat": "^4.5.5",
"@headlessui/react": "^1.6.1",
"@tailwindcss/typography": "^0.5.2",
"@types/react-helmet": "^6.1.5",
"daisyui": "^2.15.1",
"gatsby": "^4.9.1",
"gatsby-plugin-netlify": "^4.1.0",
"gatsby-plugin-pnpm": "^1.2.10",
"gatsby-plugin-react-helmet": "^5.9.0",
"gatsby-plugin-react-i18next": "^1.2.2",
"gatsby-source-filesystem": "^4.9.0",
"html2canvas": "^1.4.1",
"i18next": "^21.6.13",
"jspdf": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.15.5",
"react-images-uploading": "^3.1.6",
"usehooks-ts": "^2.4.2",
"zustand": "^4.3.9"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/plugin-transform-typescript": "^7.16.8",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/tailwindcss": "^3.0.10",
"autoprefixer": "^10.4.2",
"babel-plugin-i18next-extract": "^0.8.3",
"gatsby-plugin-postcss": "^5.9.0",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": "https://github.com/M4ss1ck/gatsby-cv-maker/issues"
}
}