forked from duncanmcdougall/eleventy-search-demo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 709 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 709 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
{
"name": "eleventy-elasticlunr-js",
"version": "1.0.0",
"description": "",
"main": ".eleventy.js",
"scripts": {
"build": "npm-run-all -s build:*",
"dev": "rimraf _site && npm run build && npm-run-all --parallel dev:*",
"build:11ty": "eleventy",
"build:scss": "node-sass src/css/main.scss -o src/css",
"dev:11ty": "eleventy --serve",
"dev:scss": "npm run build:scss && node-sass src/css/main.scss -wo src/css"
},
"author": "Duncan McDougall <duncanmcdougall@belter.io>",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"elasticlunr": "^0.9.5",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"rimraf": "^3.0.2"
}
}