-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js --fix",
"lint:ci": "eslint . --ext ts --ext tsx --ext js",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.@(ts|tsx)": [
"eslint --ext ts --ext tsx --ext js --fix",
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.4",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@^5.11.0",
"@mui/styled-engine-sc": "^5.12.0",
"next": "13.3.1",
"next-transpile-modules": "^10.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.11",
"styled-icons": "^10.47.0",
"swr": "^2.2.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.13",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.13",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}