-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.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
{
"name": "tcl-site-next",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=20.11.1",
"npm": ">=10.2.4"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/stripe-v3": "^3.1.33",
"astro": "^4.16.8",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"@astrojs/preact": "^3.5.3",
"@astrojs/sitemap": "^3.2.1",
"graphql-request": "^7.1.1",
"preact": "^10.24.3",
"stripe": "^16.9.0"
},
"lint-staged": {
"*.{astro,js,ts,jsx,tsx}": "eslint --cache --fix",
"*.{css,scss,json,md,mdx}": "prettier --write"
}
}