-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 854 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 854 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
{
"name": "cryptpad.org",
"version": "1.0.0",
"description": "cryptpad.org site",
"main": "build.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"optimize": "for i in _static/images/*.png; do optipng $i;done;for i in _static/images/*.jp*g;do jpegoptim $i;done",
"clean": "rm built/ -rf",
"serve": "python3 -m 'http.server' --directory built/",
"generate": "npx @11ty/eleventy --input=. --output=built",
"build": "npx @11ty/eleventy --input=. --output=built",
"dev": "npx @11ty/eleventy --serve --output=built"
},
"author": "ansuz",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"axios": "^1.7.4",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"fs-extra": "^10.0.0",
"less": "^4.2.0",
"nodemailer": "^8.0.1"
}
}