This repository has been archived by the owner on May 30, 2024. It is now read-only.
generated from distantcam/windty
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.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": "dev-threads",
"version": "1.0.0",
"description": "generates a static site directory of Threads profiles",
"scripts": {
"start": "run-p start:*",
"start:eleventy": "eleventy --serve",
"start:postcss": "postcss src/styles/*.css --dir _site --watch",
"build": "run-s clean build:eleventy build:postcss",
"build:eleventy": "cross-env ELEVENTY_PRODUCTION=true eleventy",
"build:postcss": "cross-env NODE_ENV=production postcss src/styles/*.css --dir _site",
"clean": "rimraf _site",
"debug": "cross-env DEBUG=Eleventy* run-p start:*"
},
"repository": {
"type": "git",
"url": "https://github.com/mcleodchris/dev-threads.git"
},
"keywords": [
"eleventy",
"11ty",
"tailwind",
"threads"
],
"author": "Chris McLeod",
"license": "Unlicense",
"homepage": "https://github.com/mcleodchris/dev-threads#readme",
"bugs": {
"url": "https://github.com/distantcam/windty/issues"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-plugin-webc": "^0.11.1",
"autoprefixer": "^10.4.14",
"bottleneck": "^2.19.5",
"clean-css": "^5.3.2",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"daisyui": "^3.5.1",
"dotenv": "^16.3.1",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.27",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.3",
"threads-api": "^1.6.3"
}
}