-
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.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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": "stackdeck",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"studio": "cd studio && pnpm dlx sanity@latest dev",
"studio:deploy": "cd studio && pnpm dlx sanity@latest deploy",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix --max-warnings=0 --no-warn-ignored",
"prettier --write"
],
"*.{css,md,json,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@sanity/client": "^7.22.0",
"html-to-image": "^1.11.13",
"jspdf": "^4.2.1",
"next": "^15.0.4",
"next-sanity": "^12.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sanity/vision": "^5.24.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"sanity": "^5.24.0",
"styled-components": "^6.4.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.59.2"
}
}