This repository has been archived by the owner on Nov 2, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "open-job-letter",
"version": "1.0.0",
"description": "[PR] Open Job Application Letter",
"homepage": "https://github.com/azu/open-job-letter",
"bugs": {
"url": "https://github.com/azu/open-job-letter/issues"
},
"license": "MIT",
"author": "azu",
"repository": {
"type": "git",
"url": "https://github.com/azu/open-job-letter.git"
},
"scripts": {
"start": "parcel report/index.html",
"clean": "rm -rf build/",
"build": "npm-run-all build:index build:report",
"build:index": "static-gfm README.md -d build/index.html -t docs/template.html && cpy --parents \"resources/**/*.{jpg,png}\" build",
"build:report": "parcel build report/index.html --public-url ./ --out-dir build/report",
"test": "textlint ./README.md",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\""
},
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"@mdx-js/parcel-plugin-mdx": "^0.16.6",
"@proofdict/textlint-rule-proofdict": "^3.0.0",
"@types/react-plotly.js": "^2.2.2",
"cpy-cli": "^2.0.0",
"globby": "^8.0.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"npm-run-all": "^4.1.5",
"parcel": "^1.10.3",
"prettier": "^1.15.3",
"static-gfm": "^1.0.2",
"textlint": "^11.0.1",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-preset-ja-technical-writing": "^3.1.0"
},
"dependencies": {
"@mdx-js/tag": "^0.16.6",
"lodash": "^4.17.13",
"plotly.js": "^1.42.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-plotly.js": "^2.2.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}