This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "onsplash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "echo No tests found.",
"format": "prettier --write --ignore-path=.gitignore .",
"format:check": "prettier --check --ignore-path=.gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.6.5",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"@nhost/nextjs": "^2.1.24",
"@nhost/nhost-js": "^3.2.1",
"@nhost/react": "^0.7.8",
"@nhost/react-apollo": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"autoprefixer": "^10.4.7",
"eslint-config-prettier": "^8.5.0",
"graphql": "^16.5.0",
"next": "^13.5.7",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "^7.31.3",
"react-infinite-scroll-component": "^6.1.0",
"react-timeago": "^7.1.0",
"rooks": "^5.11.2",
"sharp": "^0.30.7",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@types/node": "17.0.36",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@types/react-timeago": "^4.1.3",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.3",
"typescript": "4.7.2"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}