-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "mynewcv",
"packagemanager": "[email protected]",
"version": "1.0.0",
"description": "Brad Arnst CV",
"main": ".eleventy.js",
"scripts": {
"dev": "run-p dev:scss dev:11ty",
"dev:scss": "sass --watch --update --style=expanded src/styles:src/css",
"dev:11ty": "eleventy --serve --quiet",
"topdf": "node ./topdf.js",
"build": "run-s build:scss build:11ty build:pdf",
"build:scss": "sass --no-source-map --style=compressed src/styles:src/css",
"build:11ty": "eleventy",
"build:pdf": "node ./topdf.js",
"deploy": "run-s deploy:aws",
"deploy:aws": "aws s3 sync _site s3://cv.nexusseven.com --size-only --exclude '.git/*' && aws cloudfront create-invalidation --distribution-id E1LF1P8TKLF8QZ --paths '/*'"
},
"author": "Brad Arnst",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "~>8.4.31",
"postcss-cli": "^10.1.0",
"sass": "^1.62.1"
},
"dependencies": {
"html-pdf-node": "^1.0.8"
}
}