-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
30 lines (30 loc) · 916 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
{
"name": "techtribes",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=22.6.0"
},
"scripts": {
"start": "jekyll serve --source site --livereload --host 0.0.0.0",
"build": "jekyll build --source site",
"css": "node --no-warnings --experimental-strip-types src/css.ts",
"uncss": "NODE_NO_WARNINGS=1 uncss http://0.0.0.0:4000 > site/assets/css/tabler.css",
"scrape": "node --no-warnings --experimental-strip-types src/scrape.ts",
"sort": "node --no-warnings --experimental-strip-types src/sort.ts",
"images": "node --no-warnings --experimental-strip-types src/images.ts"
},
"author": "Oleg Podsechin",
"license": "MIT",
"description": "",
"dependencies": {
"cheerio": "^1.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"sharp": "^0.33.5",
"uncss": "^0.17.3"
}
}