-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "arnaud.sh",
"version": "0.1.0",
"description": "The website for arnaud.sh",
"scripts": {
"start": "npm-run-all -p dev:*",
"build": "run-s build:*",
"dev:11ty": "eleventy --serve",
"dev:css": "tailwindcss -i assets/css/tailwind.css -o _site/assets/css/tailwind.css --watch --postcss",
"build:11ty": "eleventy",
"build:css": "tailwindcss -i assets/css/tailwind.css -o _site/assets/css/tailwind.css --postcss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightdiscord/arnaud.sh.git"
},
"author": "Arnaud Pascal <root@arnaud.sh>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lightdiscord/arnaud.sh/issues"
},
"homepage": "https://github.com/lightdiscord/arnaud.sh#readme",
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"autoprefixer": "^10.4.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"prism-themes": "^1.9.0",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0"
}
}