-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.88 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
62
63
{
"name": "bloom",
"author": {
"name": "compsigh",
"email": "hello@compsigh.club",
"url": "https://compsigh.club"
},
"bugs": {
"url": "https://github.com/compsigh/bloom/issues"
},
"homepage": "https://bloom.compsigh.club",
"version": "0.5.1",
"license": "UNLICENSED",
"description": "BLOOM: a celebration of passion projects, hosted every Spring by @compsigh, the social computer science club at the University of San Francisco for meeting cool people && building cool things",
"repository": {
"type": "git",
"url": "https://github.com/compsigh/bloom.git"
},
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"lint": "eslint .",
"format:check": "prettier . --check --ignore-unknown",
"format:write": "prettier . --write --ignore-unknown",
"prebuild": "pnpm run lint && pnpm run format:check",
"build": "next build --turbopack",
"start": "next start",
"pixelate": "node scripts/pixelate-pics.mts"
},
"lint-staged": {
"**/*": [
"pnpm run lint",
"pnpm run format:write"
]
},
"dependencies": {
"@notionhq/client": "5.19.0",
"@vercel/analytics": "2.0.1",
"@vercel/toolbar": "0.2.2",
"next": "16.2.0",
"next-auth": "5.0.0-beta.31",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-random-reveal": "2.0.1"
},
"devDependencies": {
"@thi.ng/imago": "1.6.7",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.33.0",
"eslint-config-next": "16.2.0",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"typescript": "5.9.3"
},
"engines": {
"node": "24.x"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}