This repository has been archived by the owner on Dec 3, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.63 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@9renpoto/entry",
"description": "Lazy build blog",
"version": "0.0.1",
"author": "github.com/9renpoto",
"bugs": {
"url": "https://github.com/9renpoto/entry/issues"
},
"dependencies": {
"@9renpoto/style": "^0.0.2",
"@types/react": "^16.0.25",
"@types/react-calendar-heatmap": "^1.6.0",
"@types/react-helmet": "^5.0.3",
"@types/react-router-dom": "^4.2.3",
"gatsby": "^1.9.127",
"gatsby-link": "^1.6.30",
"gatsby-plugin-feed": "^1.3.14",
"gatsby-plugin-google-analytics": "^1.0.13",
"gatsby-plugin-google-tagmanager": "^1.0.10",
"gatsby-plugin-manifest": "^1.0.9",
"gatsby-plugin-preact": "^1.0.13",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-sharp": "^1.6.22",
"gatsby-plugin-sitemap": "^1.2.6",
"gatsby-plugin-typescript": "^1.4.11",
"gatsby-remark-copy-linked-files": "^1.5.22",
"gatsby-remark-images": "^1.5.33",
"gatsby-remark-prismjs": "^1.2.10",
"gatsby-remark-responsive-iframe": "^1.4.15",
"gatsby-remark-smartypants": "^1.4.9",
"gatsby-source-filesystem": "^1.5.9",
"gatsby-transformer-remark": "^1.7.23",
"gatsby-transformer-sharp": "^1.6.15",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"@9renpoto/tslint-config": "^3.4.0",
"cpx": "^1.5.0",
"cross-env": "^5.1.1",
"empty": "^0.10.1",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"markdownlint-cli": "^0.5.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.8.2",
"rimraf": "^2.6.2",
"snyk": "^1.53.0",
"textlint": "^9.1.1",
"textlint-rule-incremental-headers": "^0.2.0",
"textlint-rule-ja-no-mixed-period": "^2.0.0",
"textlint-rule-ja-no-successive-word": "^1.0.2",
"textlint-rule-ja-no-weak-phrase": "^1.0.4",
"textlint-rule-max-ten": "^2.0.3",
"textlint-rule-no-dead-link": "^3.1.1",
"textlint-rule-no-double-negative-ja": "^1.0.5",
"textlint-rule-no-doubled-conjunction": "^1.0.2",
"textlint-rule-no-doubled-conjunctive-particle-ga": "^1.0.2",
"textlint-rule-no-doubled-joshi": "^3.5.1",
"textlint-rule-no-dropping-the-ra": "^1.1.2",
"textlint-rule-no-hankaku-kana": "^1.0.2",
"textlint-rule-no-mix-dearu-desumasu": "^3.0.3",
"textlint-rule-no-nfd": "^1.0.1",
"textlint-rule-preset-ja-spacing": "^2.0.1",
"textlint-rule-preset-jtf-style": "^2.3.0",
"tslint": "^5.8.0",
"tslint-react": "^3.2.0",
"typescript": "^2.6.2"
},
"homepage": "https://github.com/9renpoto/entry#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write --single-quote --parser babylon",
"git add"
],
"*.{ts,tsx}": [
"prettier --write --parser typescript",
"tslint --fix",
"git add"
],
"*.md": [
"markdownlint",
"textlint --cache"
]
},
"main": "n/a",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/9renpoto/entry.git"
},
"scripts": {
"b:css": "cpx 'node_modules/@9renpoto/style/lib/**/*.{css,map}' static",
"b:static": "cross-env NODE_ENV=production gatsby build",
"build": "run-s b:css b:static",
"clean": "rimraf public static",
"deploy": "npm run b:css && npm run b:static -- --prefix-paths",
"dev": "gatsby develop",
"lint": "run-p lint:*",
"lint:ja": "textlint src/pages --cache",
"lint:md": "markdownlint src/pages/",
"lint:ts": "tslint 'src/**/*.ts' 'src/**/*.tsx'",
"precommit": "lint-staged",
"prepare": "npm run snyk-protect",
"snyk-protect": "snyk protect",
"start": "npm run b:css && gatsby develop",
"test": "tsc"
},
"snyk": true
}