-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "slides",
"description": "My slides using fusuma",
"config": {
"basePath": "slides/cache-strategy-on-mercari-shops"
},
"scripts": {
"pdf": "npm run build && node scripts/pdf.js $npm_package_config_basePath",
"create": "node scripts/init.js $npm_package_config_basePath",
"start": "fusuma start -b $npm_package_config_basePath -i slides",
"start:prod": "fusuma start -b $npm_package_config_basePath -i slides -f true",
"build": "fusuma build -b $npm_package_config_basePath -o dist",
"deploy": "npm run build && node scripts/deploy.js $npm_package_config_basePath",
"fmt": "prettier --write **/*.{js,json,css,md}",
"precommit": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abouthiroppy/slides.git"
},
"author": "hiroppy <[email protected]> (https://hiroppy.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiroppy/slides/issues"
},
"homepage": "https://github.com/hiroppy/slides#readme",
"devDependencies": {
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"fs-extra": "^9.1.0",
"fusuma": "^2.8.4",
"react": "^17.0.1",
"react-icons": "^4.1.0"
}
}