forked from prakhar1989/docker-curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.33 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
{
"name": "docker-curriculum",
"version": "0.0.1",
"description": "<a id=\"top\"></a> # Docker for Beginners",
"main": "index.js",
"scripts": {
"css": "sass tutorial/src/styles/main.scss tutorial/src/styles/dist/styles.css",
"generate": "npm run css && node tutorial/index.js",
"serve": "browser-sync start -s tutorial/public --no-ui --files tutorial/public --index index.html",
"watch": "nodemon tutorial/index.js",
"css-watch": "sass --watch tutorial/src/styles/main.scss tutorial/src/styles/dist/styles.css",
"start": "npm run watch | npm run css-watch | npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prakhar1989/docker-curriculum.git"
},
"author": "Prakhar Srivastav <prakhar1989@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prakhar1989/docker-curriculum/issues"
},
"homepage": "https://github.com/prakhar1989/docker-curriculum#readme",
"dependencies": {
"handlebars": "^4.7.7",
"metalsmith": "^2.1.0",
"metalsmith-layouts": "^1.4.1",
"metalsmith-markdown": "^0.2.2",
"metalsmith-metallic": "^2.0.2",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-watch": "^1.0.3",
"sass": "^1.26.3"
},
"devDependencies": {
"browser-sync": "^2.26.7",
"nodemon": "^1.18.3",
"write-good": "^1.0.8"
}
}