generated from freeCodeCamp/template
-
-
Notifications
You must be signed in to change notification settings - Fork 338
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
53
54
55
56
57
58
59
{
"name": "@freecodecamp/contribute",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "is-ci || husky",
"develop": "astro dev",
"build": "astro build",
"preview": "pnpm build && wrangler dev",
"format": "prettier . --write && eslint . --fix",
"lint": "prettier . --check && eslint .",
"test": "vitest run",
"clean": "pnpm dlx rimraf .astro dist",
"check:astro": "astro check",
"check:links": "CHECK_LINKS=true astro build"
},
"lint-staged": {
"**/*.{astro,mjs,cjs,js,jsx,ts,tsx,yaml,yml}": [
"pnpm format"
],
"**/*.{mdx,md}": [
"pnpm exec prettier . --write"
]
},
"dependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/starlight": "0.37.7",
"@astrojs/starlight-tailwind": "4.0.2",
"@tailwindcss/vite": "4.2.2",
"astro": "5.18.1",
"starlight-links-validator": "0.19.2",
"starlight-scroll-to-top": "0.4.0",
"tailwindcss": "4.2.2",
"typescript": "5.9.3"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@types/jsdom": "27.0.0",
"@types/node": "24.12.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.6.0",
"eslint-plugin-prettier": "5.5.5",
"globals": "16.5.0",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jsdom": "27.4.0",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"sharp": "0.34.5",
"typescript-eslint": "8.57.2",
"vitest": "4.1.1",
"wrangler": "4.76.0"
},
"packageManager": "pnpm@10.32.1"
}