forked from philhawksworth/jamstack-comments-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 761 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 761 Bytes
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
{
"name": "jamstack-comments-example",
"version": "2.0.0",
"author": "Phil Hawksworth",
"license": "MIT",
"scripts": {
"sass": "npx sass --style=compressed src/scss/main.scss src/site/_includes/css/styles.css",
"watch:eleventy": "eleventy --serve",
"watch:sass": "npm run sass -- --watch",
"start": "npm-run-all sass --parallel watch:*",
"build": "npm run sass && eleventy"
},
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"axios": "^0.19.2",
"dotenv": "^8.1.0",
"eleventy-plugin-sass": "^1.0.0",
"gravatar": "^1.8.0",
"markdown-it": "^11.0.0",
"netlify-plugin-form-submissions": "^0.1.1",
"npm-run-all": "^4.1.5",
"request": "^2.88.2",
"sass": "^1.26.10",
"terser": "^4.8.0"
}
}