-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 935 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 935 Bytes
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
{
"name": "portfolio",
"version": "1.0.0",
"description": "This is my portfolio website that also serves as a testing ground for web implementations using technologies I am interested in.",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"optimize-images": "node scripts/optimize-images.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barteker/portfolio.git"
},
"keywords": [],
"author": "Bart Baker",
"license": "ISC",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"css-loader": "^6.10.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.0",
"nodemon": "^3.0.3",
"sharp": "^0.34.5",
"style-loader": "^3.3.4",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
}
}