generated from nirnejak/nextjs-typescript-saas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.7 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
64
65
66
67
{
"name": "interactive-interfaces",
"description": "A Gallery of interactive interfaces made with React, TailwindCSS, Framer Motion and TypeScript",
"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": {
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-tooltip": "^1.2.8",
"akar-icons": "^1.9.31",
"dotenv": "^17.3.1",
"inspx": "^0.0.1-alpha.6",
"motion": "^12.34.3",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"use-sound": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"babel-plugin-react-compiler": "^1.0.0",
"@biomejs/biome": "^2.4.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.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",
"framer motion",
"motion",
"tailwind",
"tailwindcss"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nirnejak/interactive-interfaces"
},
"bugs": {
"url": "https://github.com/nirnejak/interactive-interfaces/issues"
}
}