-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.55 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
43
{
"name": "michellemay",
"version": "1.0.0",
"description": "",
"main": ".eleventy.js",
"targets": {
"main": false
},
"scripts": {
"start": "ELEVENTY_ENV=dev concurrently 'npm:eleventy-serve' 'npm:parcel-watch'",
"eleventy-serve": "npx @11ty/eleventy --serve",
"parcel-watch": "concurrently 'npm:watch-css' 'npm:watch-js' 'npm:watch-images'",
"watch-css": "parcel watch src/assets/css/main.css --dist-dir public/assets/css",
"watch-js": "parcel watch src/assets/js/scripts.js --dist-dir public/assets/js",
"watch-images": "parcel watch src/assets/images/* --dist-dir public/assets/images",
"eleventy-build": "npx @11ty/eleventy",
"parcel-build": "run-s build-css build-js build-images",
"build": "run-s clean parcel-build eleventy-build",
"build-css": "parcel build src/assets/css/main.css --dist-dir public/assets/css",
"build-js": "parcel build src/assets/js/scripts.js --dist-dir public/assets/js",
"build-images": "parcel build src/assets/images/* --dist-dir public/assets/images",
"clean": "rm -rf public"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@parcel/optimizer-data-url": "^2.6.1",
"@parcel/transformer-inline-string": "^2.6.1",
"autoprefixer": "^10.4.7",
"npm-run-all": "^4.1.5",
"parcel": "^2.6.1",
"postcss": "^8.4.14",
"postcss-custom-media": "^8.0.2",
"postcss-pxtorem": "^6.0.0",
"sharp": "^0.29.3"
},
"dependencies": {
"concurrently": "^7.2.2",
"the-new-css-reset": "^1.6.1"
}
}