-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 KB
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
{
"name": "room-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:prettier": "prettier --cache --write .",
"lint:eslint": "eslint \"app/**/*.{ts,tsx}\"",
"fix:eslint": "eslint \"app/**/*.{ts,tsx}\" --fix",
"lint:type": "tsc --pretty",
"preinstall": "husky install"
},
"dependencies": {
"@tanstack/react-query": "^4.29.19",
"@tanstack/react-query-devtools": "^4.29.19",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"axios": "^1.4.0",
"browser-image-compression": "^2.0.2",
"classnames": "^2.5.1",
"firebase": "^10.6.0",
"framer-motion": "^10.16.4",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.1",
"react-intersection-observer": "^9.5.2",
"react-lottie-player": "^1.5.4",
"recoil": "^0.7.7",
"sass": "^1.80.6",
"tss-react": "^4.8.6"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/http-proxy": "^1.17.15",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"js-cookie": "^3.0.5",
"prettier": "^2.8.8",
"typescript": "5.3.3"
}
}