-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.43 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
{
"name": "lifeline-data-visualization",
"version": "0.0.1",
"description": "",
"author": "Cory Birdsong",
"license": "MIT",
"scripts": {
"start": "npm run seed && npm run dev",
"dev": "npm-run-all --parallel dev:sass dev:11ty",
"dev:sass": "sass --load-path=node_modules --watch src/site/_includes/sass:src/site/_includes/css",
"dev:css": "postcss src/site/_includes/css/*.css --dir src/site/_includes/css/dist --watch --map --use autoprefixer",
"dev:11ty": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"build": "npm-run-all build:sass build:11ty",
"build:sass": "sass --load-path=node_modules src/site/_includes/sass:src/site/_includes/css",
"build:css": "postcss src/site/_includes/css/*.css --dir src/site/_includes/css/dist --map --use autoprefixer cssnano",
"build:11ty": "cross-env ELEVENTY_ENV=prod eleventy",
"seed": "cross-env ELEVENTY_ENV=seed eleventy"
},
"repository": {
"type": "git",
"url": "https://github.com/philhawksworth/example-read-from-sheets"
},
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-cache-assets": "^2.0.3",
"autoprefixer": "^10.0.1",
"axios": "^0.20.0",
"cssnano": "^4.1.10",
"dayjs": "^1.9.3",
"gsap": "^3.5.1",
"html-minifier": "^4.0.0",
"markdown-it": "^12.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"sass": "^1.26.10"
},
"devDependencies": {
"cross-env": "^7.0.2"
}
}