-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "mcs-web",
"version": "1.0.0",
"description": "organization design guide",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch:sass": "npx sass assets/styles:_site/assets/styles --watch",
"watch:eleventy": "npx @11ty/eleventy --serve",
"start": "npm run watch:eleventy & npm run watch:sass",
"build:sass": "sass assets/styles:_site/assets/styles",
"build:eleventy": "eleventy",
"build": "npm-run-all build:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysterycodesociety/mcs-web.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mysterycodesociety/mcs-web/issues"
},
"homepage": "https://github.com/mysterycodesociety/mcs-web#readme",
"dependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-navigation": "^0.1.6",
"liquid": "^4.1.0",
"luxon": "^1.26.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^5.3.0",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"sass": "^1.43.4"
}
}