-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.9 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "chessticks",
"version": "0.1.0",
"private": true,
"description": "A modern, professional chess timer application with all five major tournament timer modes",
"keywords": [
"chess",
"timer",
"tournament",
"chess-clock",
"react",
"nextjs",
"typescript"
],
"homepage": "https://chessticks.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/UtkarshTheDev/ChessTicks.git"
},
"bugs": {
"url": "https://github.com/UtkarshTheDev/ChessTicks/issues"
},
"license": "MIT",
"author": {
"name": "Utkarsh Tiwari",
"email": "utkarshweb2023@gmail.com"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"clean": "rm -rf .next out dist",
"analyze": "cross-env ANALYZE=true next build",
"export": "next export",
"preview": "next build && next start",
"postbuild": "npx next-sitemap"
},
"dependencies": {
"@ncdai/react-wheel-picker": "^1.0.15",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-three/fiber": "9.1.2",
"@types/jest": "^30.0.0",
"@types/three": "^0.179.0",
"@vercel/analytics": "^1.5.0",
"canvas-confetti": "^1.9.3",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.12.0",
"gsap": "^3.13.0",
"lucide-react": "^0.456.0",
"motion": "^12.23.12",
"next": "^15.3.4",
"react": "^19.0.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"three": "^0.167.1",
"use-sound": "^4.0.3",
"zustand": "^5.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@next/bundle-analyzer": "^15.3.4",
"@types/canvas-confetti": "^1.6.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "^15.3.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lefthook": "^1.12.3",
"lint-staged": "^16.1.5",
"next-sitemap": "^4.2.3",
"postcss": "^8",
"prettier": "^3.1.0",
"shadcn": "^3.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"ultracite": "5.2.4"
},
"trustedDependencies": [
"unrs-resolver"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite format"
]
}
}