-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.03 KB
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
{
"name": "mind-components",
"private": true,
"description": "A personal blog and portfolio by Jose Quintas.",
"version": "0.1.0",
"author": "Jose Quintas <juniorquintas@gmail.com>",
"homepage": "https://github.com/jcquintas/mind-components#readme",
"keywords": [
"jose quintas",
"mindcomponents",
"blog",
"portfolio",
"curriculum"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/jcquintas/mind-components.git"
},
"bugs": {
"url": "https://github.com/jcquintas/mind-components/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"create": "ts-node ./scripts/blog-template",
"check-links": "npx linkinator http://mindcomponents.com -r -s linkedin.com --silent",
"check-dates": "ts-node ./scripts/check-dates.ts",
"prepare": "husky install"
},
"dependencies": {
"clsx": "^2.0.0",
"next": "14.0.0",
"normalize.css": "^8.0.1",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"sass": "^1.69.5",
"typography": "^0.16.24",
"unified": "^11.0.4",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.0.0",
"vfile-matter": "^5.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.9",
"autoprefixer": "^10",
"change-case": "^4.1.2",
"eslint": "^8",
"eslint-config-next": "14.0.0",
"husky": "^8.0.3",
"inquirer": "^8.2.6",
"lint-staged": "^15.0.2",
"postcss": "^8",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}