-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 990 Bytes
/
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
{
"name": "michaeldeboey.be",
"description": "Michaël's personal website",
"version": "1.0.0",
"private": true,
"author": "Michaël De Boey <[email protected]> (https://michaeldeboey.be)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MichaelDeBoey/michaeldeboey.be"
},
"bugs": {
"url": "https://github.com/MichaelDeBoey/michaeldeboey.be/issues"
},
"homepage": "https://michaeldeboey.be",
"scripts": {
"build": "npm-run-all --parallel build:**",
"build:css": "npm run generate:css -- --minify",
"generate:css": "npx tailwindcss -o ./style.css",
"start": "npm-run-all --parallel start:**",
"start:app": "serve",
"start:css": "npm run generate:css -- --watch"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"serve": "^14.2.4",
"tailwindcss": "^3.4.15"
},
"browserslist": [
">1%",
"not dead"
]
}