-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "fundamentals-of-web-performance",
"version": "1.0.0",
"description": "Example website for the \"Fundamentals of Web Performance\" workshop.",
"main": "index.js",
"scripts": {
"start": "nodemon ./index.js",
"bundle": "lightningcss --bundle ./public/assets/css/styles.css -o ./public/assets/css/styles.bundle.css --sourcemap",
"imagePngResizer": "node ./tools/imagePngResizer.mjs",
"imagePngOptimize": "node ./tools/imagePngOptimize.mjs",
"imagePngToWebP": "node ./tools/imagePngToWebP.mjs",
"deploy": "./tools/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toddhgardner/fundametals-of-web-performance.git"
},
"keywords": [
"web-performance",
"core-web-vitals",
"workshop",
"frontend-masters"
],
"author": "Todd H. Gardner <todd@toddhgardner.com>",
"license": "",
"bugs": {
"url": "https://github.com/toddhgardner/fundametals-of-web-performance/issues"
},
"homepage": "https://github.com/toddhgardner/fundametals-of-web-performance#readme",
"dependencies": {
"better-sqlite3": "^11.3.0",
"body-parser": "^2.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^5.0.0",
"http-compression": "^1.0.20",
"nodemon": "^3.1.6"
},
"nodemonConfig": {
"ignore": [
"**/public/**"
]
},
"devDependencies": {
"glob": "^11.0.0",
"imagemin": "^9.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-webp": "^8.0.0",
"jimp": "^1.6.0",
"lightningcss-cli": "^1.27.0"
}
}