-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.68 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
{
"name": "axelgoblet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"format": "prettier --write --ignore-path .gitignore .",
"checkformat": "prettier --check --ignore-path .gitignore .",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --fix .",
"checklint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore .",
"build": "next build && next export && next-image-export-optimizer && next-sitemap && rm -rf out/images",
"deps": "npm-check-updates",
"deploy": "gh-pages -d out --dotfiles",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/moulpali": "^4.5.12",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "5.0.0-alpha.119",
"@mui/material": "^5.11.8",
"next": "^13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@lhci/cli": "^0.10.0",
"@svgr/webpack": "^6.5.1",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "8.34.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gh-pages": "^5.0.0",
"next-image-export-optimizer": "^1.2.1",
"next-sitemap": "^3.1.52",
"npm-check-updates": "^16.7.4",
"prettier": "^2.8.4",
"typescript": "4.9.5",
"husky": "^8.0.3"
}
}