forked from Dario-DC/contribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "@freecodecamp/contribute",
"type": "module",
"version": "1.0.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky",
"dev": "pnpm run develop",
"develop": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"format": "prettier . --write --cache && eslint . --cache --fix",
"lint": "prettier . --check --cache && eslint . --cache"
},
"lint-staged": {
"**/*.{astro, mjs,cjs,js,jsx,ts,tsx,yaml,yml}": [
"pnpm format"
]
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/cloudflare": "^9.2.0",
"@astrojs/starlight": "^0.21.2",
"astro": "^4.5.12",
"typescript": "^5.4.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"wrangler": "^3.39.0"
}
}