-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.28 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
{
"name": "embengineering.github.io",
"homepage": "https://embengineering.github.io/embengineering.github.io",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky"
},
"dependencies": {
"@astrojs/react": "^4.2.0",
"@tailwindcss/vite": "^4.0.17",
"astro": "^6.1.9",
"dompurify": "^3.2.4",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.21",
"cspell": "^8.18.1",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.17",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
},
"overrides": {
"brace-expansion": "^2.0.1",
"picomatch": "^4.0.2"
},
"lint-staged": {
"**/*.json": "prettier --write",
"**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write",
"cspell"
]
}
}