-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
54
55
{
"name": "@quest-chains/landing",
"version": "0.1.0",
"license": "GPL-3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc",
"lint": "eslint --ignore-path .gitignore \"*/**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier --write \"{*,**/*}.{ts,tsx,js,jsx,json,yml,yaml,md,css,scss,sol}\"",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icon": "3.0.16",
"@chakra-ui/react": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"framer-motion": "^10.2.5",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scroll": "^1.8.7",
"sass": "^1.59.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.2.4",
"@types/mersenne-twister": "^1.1.2",
"@types/node": "^18.15.3",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-scroll": "^1.8.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.2.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
}
}