-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "Fizzy-Jam",
"version": "0.2.0",
"description": "Fizzy Jam is an out-of-the-box Jamstack web app practice.",
"author": "Yuzhang Huang",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production eleventy && cross-env NODE_ENV=production sass --style=compressed src/static/css/main.scss _site/static/css/styles.css",
"local": "npm-run-all --parallel sass-watch eleventy cms",
"eleventy": "npx @11ty/eleventy --serve",
"debug": "set DEBUG=* & eleventy",
"cms": "npx netlify-cms-proxy-server",
"sass-build": "sass --style=compressed src/static/css/main.scss _site/static/css/styles.css",
"sass-watch": "npm run sass-build -- --watch"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"bulma": "^0.9.4",
"elasticlunr": "^0.9.5",
"eleventy-plugin-lazyimages": "^2.1.2",
"eleventy-plugin-time-to-read": "^1.3.0",
"katex": "^0.16.3",
"markdown-it-footnote": "^3.0.3",
"markdown-it-mark": "^3.0.1",
"open-color": "^1.9.1",
"prismjs": "^1.29.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"html-minifier": "^4.0.0",
"js-yaml": "^3.14.0",
"luxon": "^1.25.0",
"netlify-cms-proxy-server": "^1.3.24",
"npm-run-all": "^4.1.5",
"sass": "^1.32.8"
}
}