-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "seattle-js",
"type": "module",
"version": "4.0.0",
"description": "An evergreen website for the SeattleJS meetup and community",
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/preact": "^4.0.4",
"@astrojs/ts-plugin": "^1.10.4",
"@liveblocks/client": "^2.15.1",
"astro": "^5.2.5",
"marked": "^15.0.4",
"preact": "^10.25.3"
},
"devDependencies": {
"@types/node": "^22.10.4",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.6.0",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.7.2"
},
"scripts": {
"start": "astro dev",
"build": "astro build",
"preview": "astro preview --port 3333",
"astro": "astro",
"lint": "npm run check && npm run check-format",
"eslint": "eslint src/**/*.{js,jsx,ts,tsx}",
"check": "astro check",
"check-format": "prettier --no-error-on-unmatched-pattern --check **/*.{astro,js,jsx,ts,tsx,css,md,html,yml,yaml,json}",
"format": "prettier --no-error-on-unmatched-pattern --write **/*.{astro,js,jsx,ts,tsx,css,md,html,yml,yaml,json}",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seattlejs/seattlejs.com.git"
},
"author": "Carter Rabasa",
"license": "MIT",
"bugs": {
"url": "https://github.com/seattlejs/seattlejs.com/issues"
},
"homepage": "https://github.com/seattlejs/seattlejs.com#readme",
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"requireConfigFile": false,
"sourceType": "module",
"ecmaVersion": 2022,
"ecmaFeatures": {
"jsx": true
}
}
}
}