-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
89 lines (89 loc) · 2.84 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
80
81
82
83
84
85
86
87
88
89
{
"name": "resume-nextjs",
"lastestUpdatedAt": "2024-11-11",
"version": "1.3.0",
"description": "Static HTML based RESUME made with next.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env DEBUG=yosume:* NODE_OPTIONS=--openssl-legacy-provider next",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider next build",
"prebuild": "npm install && npm run lint",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider next start",
"export:with-typedoc": "npm run export && npm run typedoc",
"export": "cross-env NODE_ENV=production next export --outdir docs/",
"preexport": "npm run clean && npm run build",
"postexport": "node shellwork.js",
"clean": "npx rimraf docs .next",
"lint": "eslint \"component/**/*\" \"pages/**/*\" \"payload/**/*\" \"*.ts\" --fix",
"typedoc": "typedoc --excludeExternals"
},
"homepage": "https://uyu423.github.io/resume-nextjs",
"repository": {
"type": "git",
"url": "git+https://github.com/uyu423/resume-nextjs.git"
},
"keywords": [
"resume",
"next"
],
"author": {
"name": "Yowu Yu",
"email": "me@yowu.dev",
"url": "https://yowu.dev"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/uyu423/resume-nextjs/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@types/debug": "^4.1.7",
"bootstrap": "^4.6.0",
"chalk": "^4.1.2",
"debug": "^4.3.2",
"jquery": "^3.6.0",
"luxon": "^1.28.0",
"next": "^10.2.3",
"next-images": "^1.8.1",
"next-seo": "^4.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reactstrap": "^8.9.0",
"shelljs": "^0.8.5",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@types/luxon": "^1.27.1",
"@types/next-seo": "^1.10.0",
"@types/node": "^13.13.52",
"@types/react": "^16.14.14",
"@types/shelljs": "^0.8.9",
"@types/styled-components": "^5.1.13",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"typedoc": "~0.19.2",
"typescript": "^4.9.5"
},
"resolutions": {
"**/minimist": "^1.2.3"
}
}