-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.51 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "devgram-v2",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --cache --ext \".js,.ts,.tsx\" --report-unused-disable-directives --report-unused-disable-directives src",
"lint-fix": "pnpm lint --fix",
"prepare": "husky install",
"format": "prettier --write",
"pre-commit": "lint-staged",
"test": "./node_modules/cypress/bin/cypress run"
},
"prettier": {
"printWidth": 80,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "5.0.0-alpha.130",
"@mui/material": "^5.13.6",
"@tanstack/react-query": "^4.29.18",
"@tanstack/react-query-devtools": "^4.29.18",
"@trpc/client": "^10.32.0",
"@trpc/next": "^10.32.0",
"@trpc/react-query": "^10.32.0",
"@trpc/server": "^10.32.0",
"axios": "^1.4.0",
"cloudinary": "^1.37.3",
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"emoji-picker-react": "^4.4.9",
"javascript-time-ago": "^2.5.9",
"jsonwebtoken": "^9.0.0",
"linkify-react": "^4.1.1",
"linkifyjs": "^4.1.1",
"mongodb": "^5.6.0",
"mongoose": "^7.3.1",
"next": "^13.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.1",
"react-toggle-dark-mode": "^1.1.1",
"superjson": "^1.12.4",
"validator": "^13.9.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/cookie": "^0.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.16.18",
"@types/react": "^18.2.14",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"cypress": "^12.16.0",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"start-server-and-test": "^1.15.4",
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.28.5"
},
"publishConfig": {
"access": "restricted"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pnpm run format"
]
}
}