-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "asknot-astro-rocky",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:precommit": "vitest run",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@astrojs/react": "^4.2.0",
"@fastly/compute-js-static-publish": "^6.2.0",
"@fontsource/inter": "^5.1.1",
"@fontsource/red-hat-display": "^5.1.1",
"@nanostores/react": "^0.8.4",
"@tailwindcss/vite": "^4.0.9",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"astro": "^5.3.1",
"framer-motion": "^12.4.7",
"nanostores": "^0.11.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^4.0.9"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.19",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jsdom": "^24.1.3",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"vitest": "^1.6.1"
}
}