-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.14 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
56
{
"name": "shiny-enkibot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"react/react-in-jsx-scope": "off",
"react/prop-types": "off"
}
},
"dependencies": {
"@chakra-ui/react": "^1.6.6",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"framer-motion": "^4.1.17",
"immer": "^9.0.6",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.1.0",
"react-markdown": "^5.0.3",
"remark-gfm": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}