-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 791 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 791 Bytes
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
{
"name": "nathan-riley-resume",
"version": "1.0.0",
"description": "Nathan Riley's resume website built with TailwindCSS",
"main": "index.html",
"scripts": {
"build": "mkdir -p dist && tailwindcss -i input.css -o dist/styles.css --minify && cp index.html scripts.js _redirects dist/",
"dev": "tailwindcss -i input.css -o styles.css --watch",
"dev-server": "concurrently \"npm run dev\" \"live-server --port=3000\"",
"clean": "rm -rf dist && rm -f styles.css"
},
"keywords": [
"resume",
"tailwindcss",
"portfolio",
"cloudflare-pages"
],
"author": "Nathan Riley",
"license": "MIT",
"devDependencies": {
"tailwindcss": "^3.3.5",
"concurrently": "^8.2.2",
"live-server": "^1.2.2"
},
"engines": {
"node": ">=16.0.0"
}
}