-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 943 Bytes
/
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
{
"name": "cv",
"version": "1.11.1",
"description": "Kamil Mielnik's Curriculum Vitae",
"type": "module",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamilmielnik/cv.git"
},
"author": {
"name": "Kamil Mielnik",
"email": "[email protected]",
"url": "https://kamilmielnik.com"
},
"license": "CC BY-NC-ND 4.0",
"bugs": {
"url": "https://github.com/kamilmielnik/cv/issues"
},
"homepage": "https://kamilmielnik.com",
"scripts": {
"prettier": "prettier --list-different './src/**/*.{js,mjs,html,css}'",
"prettier:fix": "npm run prettier -- --write",
"start": "NODE_ENV=production node src/index.mjs"
},
"dependencies": {
"@minify-html/node": "^0.15.0",
"compression": "^1.7.5",
"express": "^4.21.2",
"lowdb": "^7.0.1",
"puppeteer": "^24.1.1"
},
"devDependencies": {
"prettier": "^3.4.2"
}
}