-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"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.4",
"@types/fs-extra": "^11.0.1",
"@types/js-yaml": "^4.0.5",
"@types/react": "^18.0.28",
"autoprefixer": "^10.4.14",
"classnames": "^2.3.2",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"js-yaml": "^4.1.0",
"next": "^13.2.4",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "2.8.4",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.2"
},
"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": {
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4"
}
}