-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.42 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
{
"name": "ElevenTailWorm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:tailwind": "npx tailwindcss -i src/assets/css/tailwind.css -o _site/assets/css/styles.css --watch",
"dev:bookworms": "npx bookworms get ./_data/exampleBookmarks.yaml -d=./_site/output_bookworms",
"dev:eleventy": "npx @11ty/eleventy --serve",
"build:tailwind": "npx tailwindcss -i src/assets/css/tailwind.css -o _site/assets/css/styles.css --minify",
"build:eleventy": "ELEVENTY_PRODUCTION=true npx @11ty/eleventy",
"build:bookworms": "npx bookworms get ./_data/exampleBookmarks.yaml -d=./_site/output_bookworms",
"build": "NODE_ENV=production npm-run-all build:tailwind build:eleventy build:*",
"dev": "NODE_ENV=development npm-run-all --parallel dev:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reithose/ElevenTailWorm.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/reithose/ElevenTailWorm/issues"
},
"homepage": "https://github.com/reithose/ElevenTailWorm#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.13",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.24"
},
"dependencies": {
"@11ty/eleventy": "^1.0.1",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5"
}
}