-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "atlas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && touch out/.nojekyll && cp CNAME out/",
"lint": "next lint --max-warnings=0",
"type-check": "tsc --pretty --noEmit",
"deploy": "gh-pages -d out -t true",
"prepare": "husky install",
"prettier": "prettier --write \"**/*.tsx\""
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.10.0",
"@types/react-helmet": "^6.1.6",
"axios": "^1.7.4",
"bech32": "^2.0.0",
"next": "^14.2.15",
"next-themes": "^0.2.1",
"nextra": "^2.2.12",
"nextra-theme-docs": "^2.2.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.43.7"
},
"devDependencies": {
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.7.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"src/**/*.{ts,json,md}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
}
}