-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.74 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
42
43
44
45
46
47
48
49
{
"name": "resume",
"version": "1.1.0",
"description": "The resume of Kazuya Gosho",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build": "npm-run-all clean build:html screenshot",
"build:html": "cross-env NODE_ENV=production webpack --progress",
"screenshot": "npm-run-all --parallel screenshot:*",
"screenshot:pdf": "yarn run chrome --print-to-pdf=dist/resume-kaz_gosho.pdf ./dist/index.html ",
"screenshot:png": "yarn run chrome --screenshot=dist/resume-kaz_gosho.png ./dist/index.html",
"screenshot:pdf-ja": "yarn run chrome --print-to-pdf=dist/resume-kaz_gosho.ja.pdf ./dist/index.ja.html ",
"screenshot:png-ja": "yarn run chrome --screenshot=dist/resume-kaz_gosho.ja.png ./dist/index.ja.html",
"chrome": "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --headless --disable-gpu --page-ranges=1 --window-size=900,1200",
"clean": "rimraf dist && mkdir dist && touch dist/.gitkeep",
"format": "prettier --write src/**/*.{js,css} README.md"
},
"keywords": [
"resume",
"developer",
"nodejs",
"webpack"
],
"author": "Kazuya Gosho ketsume0211@gmail.com",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"cross-env": "^7.0.3",
"css-loader": "^0.28.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"npm-run-all": "^4.1.3",
"postcss-loader": "^3.0.0",
"postcss-simple-vars": "^5.0.2",
"precss": "^4.0.0",
"prettier": "^2.3.2",
"pug": "^3.0.1",
"pug-loader": "^2.3.0",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}