-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.62 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
{
"name": "luiscontreras.dev",
"private": true,
"version": "1.0.0",
"description": "Luis's Personal Website",
"main": "n/a",
"repository": "github:devrasec/luiscontreras.dev",
"author": "Luis Contreras <one.tmac@gmail.com> (https://luiscontreras.dev)",
"license": "MIT",
"scripts": {
"dev": "next-remote-watch ./content",
"dev:debug": "NODE_OPTIONS='--inspect' next-remote-watch ./content",
"build": "next build",
"vercel-build": "yum install libuuid-devel libmount-devel && cp /lib64/{libuuid,libmount,libblkid}.so.1 node_modules/canvas/build/Release/ && npm run build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@styled-system/theme-get": "^5.1.2",
"canvas": "^2.6.1",
"date-fns": "^2.16.1",
"fast-glob": "^3.2.4",
"gray-matter": "^4.0.2",
"lodash": "^4.17.20",
"next": "^10.0.4",
"next-mdx-remote": "^2.0.0",
"next-seo": "^4.17.0",
"polished": "^4.0.5",
"raw-loader": "^4.0.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-focus-lock": "^2.5.0",
"react-icons": "^4.1.0",
"react-markdown": "^5.0.3",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@types/react": "^16.8.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint-config-contreras": "^0.2.4",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"next-remote-watch": "^0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
},
"engines": {
"node": "16.x"
}
}