-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "kino-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier --write --config .prettierrc.json \"**/*.jsx\" \"**/*.js\"",
"lint": "eslint --fix --config .eslintrc.json \"**/*.jsx\" \"**/*.js\"",
"format": "npm run prettier && npm run lint"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fontsource/cairo": "^4.5.5",
"@fontsource/open-sans": "^4.5.6",
"framer-motion": "^6.2.8",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.{js, jsx, ts, tsx}": [
"eslint --cache --fix"
],
"*.{css,scss,md,html}": [
"prettier --write"
]
}
}