-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.04 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "rirekisho",
"version": "24.02.0",
"private": true,
"description": "Yet Another Resume Website. This time it's mine though.",
"keywords": [
"cv",
"gatsby",
"react",
"resume",
"rirekisho",
"tailwindcss",
"typescript"
],
"homepage": "https://cv.jeremierodriguez.com",
"bugs": {
"url": "https://github.com/jeremiergz/rirekisho/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremiergz/rirekisho.git"
},
"license": "Apache-2.0",
"author": "Jeremie Rodriguez <[email protected]> (https://github.com/jeremiergz)",
"files": [
"public/"
],
"scripts": {
"build": "run-s clean build:compile",
"build:compile": "gatsby build",
"clean": "rimraf .cache/ coverage/ package/ public/ rirekisho-*.tgz *.tsbuildinfo",
"deploy": "gh-pages --dist public --repo https://${GH_TOKEN}@github.com/jeremiergz/rirekisho.git",
"lint": "run-p lint:eslint lint:tsc",
"lint:eslint": "eslint --ext ts,tsx src",
"lint:tsc": "tsc --noEmit",
"prepare": "husky install",
"prerelease": "run-s build lint test",
"release": "make release",
"start": "gatsby serve",
"start:debug": "NODE_OPTIONS=--inspect gatsby develop",
"start:w": "gatsby develop",
"test": "jest",
"test:cc": "jest --clearCache",
"version": "node --print process.env.npm_package_version"
},
"dependencies": {
"autoprefixer": "10.4.13",
"clsx": "1.2.1",
"date-fns": "2.29.3",
"gatsby": "5.6.1",
"gatsby-plugin-image": "3.6.0",
"gatsby-plugin-manifest": "5.6.0",
"gatsby-plugin-offline": "6.6.0",
"gatsby-plugin-postcss": "6.6.0",
"gatsby-plugin-robots-txt": "1.8.0",
"gatsby-plugin-root-import": "2.0.9",
"gatsby-plugin-sharp": "5.6.0",
"gatsby-plugin-sitemap": "6.6.0",
"gatsby-source-filesystem": "5.6.0",
"gatsby-transformer-json": "5.6.0",
"gatsby-transformer-sharp": "5.6.0",
"lodash.throttle": "4.1.1",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.2.7",
"typeface-baloo-bhaina-2": "1.1.13",
"typeface-open-sans": "1.1.13"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@kobionic/eslint-config-typescript": "^4.0.3",
"@kobionic/eslint-config-typescript-react": "^2.0.3",
"@types/jest": "^29.4.0",
"@types/lodash.throttle": "^4.1.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.4.3",
"babel-preset-gatsby": "^3.6.0",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18"
}
}