-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
40
41
{
"name": "resume",
"description": "The Resume (Curriculum Vitae) Project",
"scripts": {
"build": "node src/build.js",
"watch": "chokidar 'src/**/*' -i 'dest/**/*' -c 'npm run build'",
"prestart": "npm run build",
"start": "npm run watch & live-server dest",
"pregh": "npm run build",
"gh": "gh-pages -d dest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gferr/resume.git"
},
"keywords": [
"cv",
"resume"
],
"author": "Guilherme Ferreira <guilhermef18@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gferr/resume/issues"
},
"homepage": "https://github.com/gferr/resume#readme",
"devDependencies": {
"chokidar-cli": "^2.1.0",
"fs-extra": "^7.0.1",
"gh-pages": "^2.2.0",
"handlebars": "^4.7.7",
"live-server": "^1.2.1",
"markdown": "^0.5.0",
"puppeteer": "^1.20.0",
"watch": "^1.0.2"
},
"dependencies": {
"dayjs": "^1.7.8",
"dom-i18n": "^1.2.0",
"speakingurl": "^14.0.1"
}
}