-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "mr-fe-external",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc",
"prettier": "prettier --write .",
"prepare": "husky install",
"lint:css": "stylelint **/*.{css,sass,scss} --custom-syntax postcss-scss --allow-empty-input",
"lint:js": "eslint --color --ignore-path .eslintignore . --ext .ts,.tsx,.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.15",
"@mui/styles": "^5.11.13",
"axios": "^1.1.2",
"classnames": "^2.3.2",
"next": "12.3.1",
"postcss": "^8.4.17",
"postcss-scss": "^4.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-material-ui-carousel": "^3.4.2",
"sass": "^1.55.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@types/node": "18.7.21",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"typescript": "4.8.3"
}
}