-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "personal-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist/",
"styles": "postcss ./dist/*.css --replace",
"eleventy:serve": "eleventy --serve --config=eleventy.config.js",
"eleventy": "eleventy --config=eleventy.config.js",
"dev": "ELEVENTY_ENV=development NODE_ENV=development npm-run-all --print-label clean eleventy:serve",
"build": "ELEVENTY_ENV=production NODE_ENV=production run-s --print-label clean eleventy styles",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clementprdhomme/personal-website.git"
},
"keywords": [],
"author": "Clément Prod'homme <contact@clementprodhomme.fr> (http://clementprodhomme.fr/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/clementprdhomme/personal-website/issues"
},
"homepage": "https://github.com/clementprdhomme/personal-website#readme",
"engines": {
"node": "20.11.1"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"cssnano": "^6.0.5",
"date-fns": "^2.11.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"prettier": "^2.0.1"
}
}