-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "gitfolio-online",
"version": "1.0.0",
"description": "a portfolio website for everyone to showcase their work",
"main": "index.js",
"scripts": {
"start": "node scripts/server.js",
"dev": "concurrently \"SERVER_PORT=4000 nodemon scripts/server.js\" \"browser-sync start --proxy 'localhost:4000' --port 3000 --files 'assets/**/*' --no-notify\"",
"dev:server": "nodemon scripts/server.js",
"test": "jest",
"lint": "eslint src/ api/"
},
"author": {
"name": "@wangningkai and community",
"email": "i@ningkai.wang",
"url": "https://wangningkai.github.io"
},
"bugs": "https://github.com/wangningkai/gitfolio-online/issues",
"homepage": "https://github.com/wangningkai/gitfolio-online",
"keywords": [
"personal-website",
"github",
"portfolio",
"portfolio website",
"gitfolio-online",
"git"
],
"repository": {
"type": "git",
"url": "https://github.com/wangningkai/gitfolio-online"
},
"license": "GPL-3.0",
"dependencies": {
"axios": "^1.7.9",
"github-username-regex": "^1.0.0",
"handlebars": "^4.7.8",
"html-minifier-terser": "^7.2.0",
"jsdom": "^25.0.1",
"vercel": "^39.2.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@jest/globals": "^30.2.0",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"socks-proxy-agent": "^8.0.5"
}
}