-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.6 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
57
58
59
60
61
62
63
64
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ins": "yarn && yarn dev",
"prepare": "husky install",
"pre-commit": "next lint",
"format": "prettier --write .",
"prettier-check-all": "prettier --check ."
},
"dependencies": {
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.0.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"framer-motion": "^6.3.3",
"gray-matter": "^4.0.3",
"mongodb": "^4.2.0",
"next": "^12.0.8",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.7.1",
"rehype-highlight": "^5.0.0",
"rehype-raw": "^6.1.0",
"rehype-sanitize": "^5.0.0",
"rehype-stringify": "^9.0.2",
"remark-parse": "^10.0.0",
"remark-rehype": "^10.0.0",
"sharp": "^0.30.4",
"unified": "^10.1.0"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"eslint": "8.7.0",
"eslint-config-next": "12.0.9",
"eslint-config-prettier": "^8.3.0",
"husky": "^8.0.1",
"lint-staged": ">=10",
"postcss": "^8.3.5",
"prettier": "2.6.2",
"tailwindcss": "^3.0.24"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{html,js}": [
"prettier --write"
]
}
}