-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.53 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
{
"name": "caglarturali.github.io",
"version": "1.0.0",
"homepage": "https://turali.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/caglarturali/caglarturali.github.io.git"
},
"source": "public/index.html",
"scripts": {
"init": "npm run clean && npm run copy && npm run resume",
"clean": "shx rm -rf .parcel-cache dist && shx mkdir dist",
"copy": "shx cp -r data/* dist",
"start": "npm run init && parcel",
"build": "npm run init && parcel build",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"format": "prettier --write --ignore-unknown \"**/*\"",
"test": "vitest",
"test:run": "vitest run",
"test:cov": "vitest run --coverage",
"resume": "tsx scripts/processResume.ts",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"prepare": "husky"
},
"type": "module",
"engines": {
"node": ">=20"
},
"license": "GPL-3.0-or-later",
"description": "",
"devDependencies": {
"@eslint/js": "^9.11.1",
"@tanstack/eslint-plugin-query": "^5.58.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.4",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@vitest/coverage-v8": "^2.1.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.36.1",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"msw": "^2.4.11",
"parcel": "^2.12.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"process": "^0.11.10",
"shx": "^0.3.4",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.7.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@tanstack/react-query": "^5.59.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-helmet": "^6.1.0"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}