-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "react-presentation",
"description": "Next.js TypeScript Starter",
"version": "1.0.0",
"author": "Jitendra Nirnejak <jeetnirnejak@gmail.com>",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format --write .",
"format:check": "biome format .",
"type-check": "tsc --pretty --noEmit",
"prepare": "husky"
},
"dependencies": {
"akar-icons": "^1.9.31",
"dotenv": "^17.4.2",
"motion": "^12.40.0",
"next": "^16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sharp": "^0.35.2",
"shiki": "^4.2.0",
"use-sound": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "^25.9.4",
"@types/react": "^19.2.17",
"autoprefixer": "^10.5.0",
"babel-plugin-react-compiler": "^1.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": "biome check --fix --no-errors-on-unmatched"
},
"volta": {
"node": "24.12.0"
},
"keywords": [
"nextjs",
"react",
"typescript",
"biome",
"precommit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nirnejak/react-presentation"
},
"bugs": {
"url": "https://github.com/nirnejak/react-presentation/issues"
}
}