forked from freeCodeCamp/contribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "@freecodecamp/contribute",
"type": "module",
"version": "1.0.0",
"engines": {
"pnpm": "9"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "npx is-ci || npx husky",
"dev": "pnpm run develop",
"develop": "astro dev",
"start": "node ./run-server.mjs",
"build": "rm -rf ./dist && astro check && astro build",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"format": "prettier . --write --cache && eslint . --cache --fix",
"lint": "prettier . --check --cache && eslint . --cache",
"playwright:run": "playwright test",
"playwright:watch": "playwright test --ui"
},
"lint-staged": {
"**/*.{astro, mjs,cjs,js,jsx,ts,tsx,yaml,yml}": [
"pnpm format"
]
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/node": "^8.2.5",
"@astrojs/starlight": "^0.24.0",
"astro": "^4.5.12",
"express": "4.19.2",
"morgan": "1.10.0",
"typescript": "^5.4.3",
"winston": "3.13.0"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"dotenv": "^16.4.5",
"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.14.0",
"sharp": "0.33.4"
}
}