-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.61 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
{
"name": "kss-it-committee.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"posts": "node scripts/build-posts.mjs",
"predev": "npm run posts",
"dev": "next dev",
"prebuild": "npm run posts",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format": "prettier --write .",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"push": "drizzle-kit push",
"studio": "drizzle-kit studio"
},
"dependencies": {
"@next/third-parties": "^16.2.9",
"bcryptjs": "^3.0.3",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.29.0",
"gray-matter": "^4.0.3",
"next": "16.2.6",
"postgres": "^3.4.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"server-only": "^0.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/bcryptjs": "^3.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "^15.5.11",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.8.1",
"typescript": "^5"
}
}