-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"author": "CFA",
"bugs": {
"url": "https://github.com/CodeForAfrica/sensors.AFRICA-ESP32-webserver-ui/issues"
},
"dependencies": {
"csso": "^5.0.5",
"express": "^5.2.1",
"glob": "^13.0.6",
"html-minifier-next": "^5.2.2",
"imagemin": "^9.0.1",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^12.0.0",
"multer": "^2.1.1",
"nodemon": "^3.1.14",
"purgecss": "^8.0.0",
"sharp": "^0.34.5",
"svgo": "^4.0.1",
"terser": "^5.46.1"
},
"description": "Web server user interface development for ESP32 boards.",
"homepage": "https://github.com/CodeForAfrica/sensors.AFRICA-ESP32-webserver-ui#readme",
"keywords": [
"ESP32"
],
"license": "Apache-2.0",
"main": "index.js",
"name": "sensors.africa-esp32-webserver-ui",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeForAfrica/sensors.AFRICA-ESP32-webserver-ui.git"
},
"scripts": {
"build": "node build.js",
"build:debug": "LOG_LEVEL=debug npm run build",
"clean:svgs": "svgcleaner src dist || echo 'svgcleaner not found'",
"dev": "npm run build:debug && npm run watch",
"optimize:svgs": "npx svgo -f src/icons -o dist/icons",
"start": "node server/index.js",
"test": "jest",
"watch": "nodemon --watch src --ext js,css,html --exec \"npm run build:debug && npm run start\""
},
"type": "module",
"version": "1.0.0"
}