-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 749 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
27
28
29
{
"name": "cv",
"version": "1.0.0",
"description": "CV generator",
"main": "index.js",
"repository": "git@github.com:dprgarner/cv.git",
"author": "David Garner <dprgarner@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node demo.js",
"build:watch": "nodemon -x \"yarn build\" -w src/ -e hb,css,md",
"build": "node build.js",
"deploy": "gh-pages -d dist",
"serve": "http-server dist"
},
"devDependencies": {
"express": "^4.17.1",
"front-matter": "^3.0.2",
"gh-pages": "^2.1.1",
"handlebars": "^4.7.7",
"http-server": "^0.12.1",
"livereload": "^0.8.2",
"marked": "^0.7.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0"
}
}