-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 988 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
{
"name": "sooo-slow",
"version": "0.0.1",
"description": "Fractal of bad performance habits",
"main": "index.js",
"scripts": {
"start": "node .",
"optimize-svg": "svgo -f static/img/emoji/svg",
"bundle-svg": "cat static/img/emoji/svg/* > static/img/emoji/svg/_bundle.svg",
"resize-png": "mogrify -resize 600 static/img/cats/*.jpg",
"optimize-png": "imagemin --progressive static/img/cats/* static/img/cats",
"remove-unused-css": "uncss http://localhost:8080/showcase > static/css/bundle.css"
},
"keywords": [
"performance",
"optimization",
"sandbox"
],
"author": "Roman Paradeev <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "1.15.0",
"bootstrap": "3.3.6",
"compression": "1.6.1",
"express": "4.13.4",
"jquery": "3.3.1",
"qrcode": "0.4.2",
"timing.js": "1.1.0"
},
"devDependencies": {
"imagemin-cli": "2.1.0",
"svgo": "0.6.4",
"uncss": "0.13.0"
}
}