-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.69 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
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
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/iron": "^6.0.0",
"@prisma/client": "4.6.1",
"@react-hook/window-scroll": "^1.3.0",
"@tippyjs/react": "^4.0.2",
"cookie": "^0.4.1",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.19",
"nanoid": "^3.1.9",
"next": "^13.0.4",
"next-connect": "^0.13.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-hook-form": "^7.39.4",
"react-markdown": "^4.3.1",
"react-obfuscate": "^3.6.7",
"react-spinners": "^0.8.3",
"react-switch": "^5.0.1",
"react-truncate": "^2.4.0",
"recipe-scraper": "^1.23.4",
"slugify": "^1.4.0",
"styled-components": "^4.4.1",
"styled-normalize": "^8.0.7",
"swr": "^1.3.0"
},
"devDependencies": {
"prisma": "4.6.1",
"@types/lodash": "^4.14.157",
"@types/node": "13.13.9",
"@types/react": "16.9.35",
"@types/styled-components": "^5.1.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.0.5",
"typescript": "4.3.2"
},
"prettier": {
"semi": false
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"git add"
],
"*.{css,json,md,mdx}": [
"prettier --write",
"git add"
],
"*.{js,css,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}