-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.64 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
{
"name": "games-right-meow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^1.1.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"moment": "^2.29.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.3.5"
},
"scripts": {
"serve": "npm-run-all --parallel serve-tailwind serve-eleventy",
"build": "npm-run-all build-eleventy build-tailwind",
"debug": "npm-run-all build-eleventy-debug build-tailwind",
"build-eleventy-debug": "cross-env ELEVENTY_ENV=production NODE_ENV=production DEBUG=Eleventy* npx @11ty/eleventy",
"build-eleventy": "cross-env PRODUCTION=true ELEVENTY_ENV=production NODE_ENV=production npx @11ty/eleventy",
"build-tailwind": "cross-env NODE_ENV=production npx tailwindcss -i styles/tailwind.css -o _site/style.css --minify",
"serve-eleventy": "cross-env ELEVENTY_ENV=development npx @11ty/eleventy --serve",
"serve-tailwind": "npx tailwindcss -i styles/tailwind.css -o _site/style.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GamesRightMeow/GamesRightMeow.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GamesRightMeow/GamesRightMeow.github.io/issues"
},
"homepage": "https://github.com/GamesRightMeow/GamesRightMeow.github.io#readme"
}