forked from FOSSUChennai/Communities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.17 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
60
61
{
"name": "communities",
"version": "1.0.0",
"type": "module",
"description": "A community hub for discovering and engaging with technology conferences, tech meetups and events across Tamil Nadu.",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"prepare": "husky",
"format:check": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"format:write": "prettier --cache --write --list-different --ignore-path .gitignore --ignore-path .prettierignore .",
"lint": "next lint && eslint . --max-warnings 0",
"generate:vapid": "npx web-push generate-vapid-keys",
"validate:events": "node -e \"const events = require('./src/data/events.json'); console.log('✅ events.json is valid JSON with', events.length, 'events')\"",
"validate:communities": "node -e \"const communities = require('./src/data/communities.json'); console.log('✅ communities.json is valid JSON with', communities.length, 'communities')\""
},
"dependencies": {
"@phosphor-icons/react": "^2.1.7",
"framer-motion": "^12.4.10",
"jsonfeed-to-rss": "^3.0.8",
"next": "15.4.10",
"next-umami": "^1.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rss": "^1.2.2",
"web-push": "^3.6.7"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/rss": "^0.0.32",
"@types/web-push": "^3.6.4",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.3",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"postcss": "^8",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"typescript-eslint": "^8.19.0"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=22.0.0"
}
}