-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "nextfire",
"version": "1.3.0",
"private": true,
"author": "Haltarys",
"description": "A Dev.to clone built with Next.js 12 and Firebase.",
"keywords": [
"nextjs",
"firebase",
"react",
"typescript",
"dev.to",
"devto"
],
"homepage": "https://next-fire-sage.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/Haltarys/NextFire.git"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"emulator": "firebase emulators:start --import=./.firebase_cache --export-on-exit",
"format": "prettier --write src/**/*.{ts,tsx,css}",
"lint": "next lint",
"changeset": "changeset",
"prepare": "husky install"
},
"dependencies": {
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"firebase": "^10.0.0",
"lodash.debounce": "^4.0.8",
"lodash.kebabcase": "^4.1.1",
"next": "13.4.9",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.45.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^8.0.7",
"typescript": "5.1.6"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.kebabcase": "^4.1.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.7"
}
}