-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 921 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
{
"name": "michaeledelstone.com",
"version": "1.0.0",
"description": "I’m a product designer focusing on utilitarian software and brands. I like dogs, national parks, and making useful things with talented people.",
"main": "index.js",
"scripts": {
"watch:css": "sass --watch src/styles:_site/css",
"build:css": "sass src/styles:_site/css",
"watch:11ty": "eleventy --serve",
"build:11ty": "eleventy",
"build": "npm run build:css && npm run build:11ty",
"start": "concurrently \"npm run watch:css\" \"npm run watch:11ty\""
},
"keywords": [
"product-design",
"portfolio",
"ux",
"frontend",
"design-systems",
"personal-website"
],
"author": "Michael Edelstone <[email protected]> (https://michaeledelstone.com)",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"concurrently": "^9.0.1",
"sass": "^1.71.1"
}
}