This repository was archived by the owner on Oct 13, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) 路 1.35 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) 路 1.35 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
{
"name": "asi-calculator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "export GIT_COMMIT_SHA=$(git rev-parse HEAD) && next dev",
"build": "export GIT_COMMIT_SHA=$(git rev-parse HEAD) && next build",
"start": "export GIT_COMMIT_SHA=$(git rev-parse HEAD) && next start",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@coingecko/cryptoformat": "^0.8.2",
"@radix-ui/react-icons": "^1.3.2",
"next": "15.4.5",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.5",
"swr": "^2.3.4",
"use-debounce": "^10.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@kremalicious/config": "^2.0.0",
"@types/node": "^22",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"husky": "^9.1.6",
"typescript": "^5"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/kremalicious"
},
{
"type": "individual",
"url": "https://kremalicious.com/thanks"
}
],
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"overrides": {
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7"
}
}