-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 KB
/
package.json
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
{
"name": "@nwalters512/cookbook",
"private": true,
"description": "My personal recipes as structured data, plus an app to view them",
"author": "Nathan Walters <[email protected]>",
"dependencies": {
"@rehooks/local-storage": "^2.4.5",
"@tailwindcss/postcss": "^4.0.6",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.0.8",
"autoprefixer": "^10.4.20",
"classnames": "^2.5.1",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"next": "^15.1.7",
"postcss": "^8.5.2",
"postcss-import": "^16.1.0",
"prettier": "3.5.0",
"pretty-quick": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.6",
"typescript": "^5.7.3"
},
"license": "MIT",
"scripts": {
"build": "tsc && next build",
"dev": "next dev",
"format": "next lint --fix && prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "next lint && prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "next start",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/nwalters512/cookbook"
},
"devDependencies": {
"@types/node": "22.13.1",
"eslint": "^9.20.1",
"eslint-config-next": "^15.1.7"
},
"packageManager": "[email protected]"
}