-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "carlnolan.me",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "npx eslint --fix . && prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"axios": "^0.24.0",
"framer-motion": "^6.2.4",
"gray-matter": "^4.0.3",
"next": "12.0.9",
"next-mdx-remote": "^3.0.8",
"next-pwa": "^5.4.4",
"next-themes": "^0.0.15",
"nprogress": "^0.2.0",
"preact": "^10.6.2",
"query-string": "^7.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-syntax-highlighter": "^15.4.5",
"sharp": "^0.29.3",
"swr": "^1.1.0"
},
"devDependencies": {
"@types/node": "16.11.7",
"@types/nprogress": "^0.2.0",
"@types/react": "17.0.38",
"@types/react-syntax-highlighter": "^13.5.2",
"autoprefixer": "^10.4.0",
"eslint": "7",
"eslint-config-next": "12.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"postcss": "^8.4.0",
"prettier": "2.5.1",
"tailwindcss": "^3.0.5",
"typescript": "4.5.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}