-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.75 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.75 KB
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
66
67
68
69
70
71
72
73
{
"name": "kenchan0130.github.io",
"version": "1.0.0",
"repository": "git@github.com:kenchan0130/kenchan0130.github.io.git",
"author": "Tadayuki Onishi",
"license": "MIT",
"private": true,
"scripts": {
"lint:run:eslint": "eslint --max-warnings=0 webpack/src/**/*.ts",
"lint:fix:eslint": "eslint --fix webpack/src/**/*.ts",
"lint:run:textlint": "textlint -f pretty-error *.{html} _posts/ _pages/",
"lint:fix:textlint": "textlint --fix *.{html} _posts/ _pages/",
"lint:dryrun:textlint": "textlint --fix --dry-run --format diff *.{html} _posts/ _pages/",
"lint:run": "run-p lint:run:*",
"lint:fix": "run-p lint:fix:*",
"lint:dryrun": "run-p lint:dryrun:*",
"start": "webpack --mode development --devtool source-map --watch | bundle exec jekyll serve --future",
"build": "NODE_ENV=production webpack --mode production"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@sentry/types": "*",
"@textlint-rule/textlint-rule-no-invalid-control-character": "latest",
"@textlint-rule/textlint-rule-no-unmatched-pair": "latest",
"@types/jquery": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-loader": "latest",
"clean-webpack-plugin": "latest",
"css-loader": "latest",
"css-minimizer-webpack-plugin": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"mini-css-extract-plugin": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"textlint": "*",
"textlint-filter-rule-comments": "latest",
"textlint-filter-rule-whitelist": "latest",
"textlint-rule-ja-no-abusage": "latest",
"textlint-rule-ja-no-redundant-expression": "latest",
"textlint-rule-ja-unnatural-alphabet": "latest",
"textlint-rule-no-doubled-conjunctive-particle-ga": "latest",
"textlint-rule-no-hankaku-kana": "latest",
"textlint-rule-no-mix-dearu-desumasu": "latest",
"textlint-rule-no-nfd": "latest",
"textlint-rule-prefer-tari-tari": "latest",
"textlint-rule-preset-ja-spacing": "latest",
"textlint-rule-preset-jtf-style": "latest",
"textlint-rule-prh": "*",
"ts-loader": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-assets-manifest": "latest",
"webpack-cli": "latest"
},
"dependencies": {
"@babel/polyfill": "latest",
"@fancyapps/fancybox": "latest",
"@fortawesome/fontawesome-free": "latest",
"@sentry/browser": "latest",
"algoliasearch": "latest",
"autocomplete.js": "latest",
"core-js": "latest",
"fg-loadcss": "latest",
"jquery": "latest",
"lazysizes": "latest",
"tablesorter": "latest"
}
}