-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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": "quizy-with-react-and-typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"check-types": "tsc --noEmit",
"lint": "eslint --fix --ext .tsx,.ts,.json .",
"lint-fix": "eslint --fix --ext .tsx,.ts,.json ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@emotion/cache": "11.6.0",
"@emotion/react": "11.7.0",
"@emotion/server": "11.4.0",
"@emotion/styled": "11.6.0",
"@hookform/resolvers": "^2.8.8",
"@mui/core": "^5.0.0-alpha.54",
"@mui/icons-material": "5.2.0",
"@mui/lab": "5.0.0-alpha.57",
"@mui/material": "5.2.1",
"@mui/styles": "5.2.1",
"@types/node": "16.11.10",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"eslint-plugin-simple-import-sort": "^7.0.0",
"next": "^12.0.5-canary.8",
"next-i18next": "9.2.0",
"next-images": "1.8.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.3-canary.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}