-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.13 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
{
"private": true,
"name": "my-portfolio",
"author": "Jotyy <jotyy318@gmail.com>",
"license": "MIT",
"description": "A portfolio site made with Remix",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"postinstall": "remix setup node & husky install",
"start": "remix-serve build",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"commit": "cz"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"npm run lint --fix",
"npm run format"
]
},
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/theme-tools": "^2.0.2",
"@chakra-ui/utils": "^2.0.2",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@nikolovlazar/chakra-ui-prose": "^1.2.1",
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"@remix-run/vercel": "^1.5.1",
"dayjs": "^1.11.3",
"framer-motion": "^6.3.11",
"gray-matter": "^4.0.3",
"marked": "^4.0.16",
"mitt": "^3.0.0",
"react": "18",
"react-dom": "^18.1.0",
"react-icons": "^4.4.0",
"rehype-highlight": "^5.0.2",
"remark-frontmatter": "^4.0.1",
"remark-mdx-frontmatter": "^1.1.1",
"remark-toc": "^8.0.1",
"remix": "^1.5.1"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@remix-run/dev": "^1.5.1",
"@types/marked": "^4.0.3",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1",
"typescript": "^4.7.3"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}