-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
{
"name": "hirehart.com",
"version": "1.0.1",
"description": "Website for getting Peter back to work",
"homepage": "https://hirehart.com",
"author": "Peter J. Hart",
"engines": {
"node": ">=18.20.4"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/peterjhart/hirehart.git"
},
"private": true,
"scripts": {
"build": "tsc -b && vite build",
"dev": "vite",
"preview": "vite preview",
"test": "vitest",
"test:once": "vitest run"
},
"type": "module",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^22.0.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.19",
"bootstrap": "^5.3.3",
"happy-dom": "^14.12.3",
"popper.js": "^1.16.0",
"postcss": "^8.4.40",
"prettier": "3.3.3",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.5"
},
"dependencies": {
"lucide-react": "^0.418.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}