-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mekel.dev",
"version": "1.1.3",
"engines": {
"node": "16.x"
},
"author": "Mekel Ilyasa (github.com/retr00exe)",
"description": "",
"license": "MIT",
"keywords": [],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check": "prettier --check .",
"format": "prettier --write .",
"fix": "eslint --fix ."
},
"dependencies": {
"date-fns": "^2.23.0",
"disqus-react": "^1.1.1",
"framer-motion": "^3.10.6",
"graphql": "^15.5.1",
"graphql-request": "^3.5.0",
"next": "^12.2.0",
"next-themes": "^0.2.0",
"nprogress": "^0.2.0",
"prism-react-renderer": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.2.0",
"react-loader-spinner": "^4.0.0",
"react-markdown": "^5.0.3",
"react-syntax-highlighter": "^15.4.4",
"reading-time": "^1.4.0",
"styled-components": "^5.3.5",
"terminal-in-react": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^14.17.11",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.12",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"autoprefixer": "^10.4.7",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^4.3.8",
"lint-staged": "^11.1.2",
"postcss": "^8.4.14",
"prettier": "^2.3.2",
"tailwindcss": "^3.1.4",
"typescript": "^4.3.5",
"webpack": "^5.51.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run fix",
"npm run format"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}