-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 867 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 867 Bytes
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
{
"name": "forwardjs",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"postinstall": "npm run data",
"prebuild": "npm run data",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"data": "node scripts/fetchMeetupData.js",
"lint": "eslint . --ext .js,.astro",
"format": "prettier --check .",
"lint:fix": "eslint . --ext .js,.astro --fix",
"format:fix": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"astro": "^6.1.6"
},
"devDependencies": {
"eslint": "^9.32.0",
"eslint-plugin-astro": "^1.6.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}