-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.02 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
{
"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": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fullpage/react-fullpage": "^0.1.40",
"@material/material-color-utilities": "^0.2.7",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.13.7",
"@mui/styled-engine": "^5.13.2",
"@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",
"styled-components": "^6.0.2",
"tss-react": "^4.8.6",
"typescript": "5.1.6"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/http-proxy": "^1.17.15",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.13",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"babel-plugin-styled-components": "^2.1.4",
"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",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"js-cookie": "^3.0.5",
"prettier": "^2.8.8"
}
}