-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.79 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
{
"name": "@dailybruin/gatsby-source-kerckhoff",
"author": "Daily Bruin Online <[email protected]>",
"description": "The Daily Bruin's component library.",
"version": "0.0.0-development",
"main": "gatsby-node.js",
"license": "AGPL-3.0",
"keywords": [
"gatsby",
"gatsby-plugin",
"daily bruin",
"journalism"
],
"files": [
"gatsby-node.js"
],
"repository": {
"type": "git",
"url": "https://github.com/dailybruin/gatsby-source-kerckhoff.git"
},
"bugs": {
"url": "https://github.com/dailybruin/gatsby-source-kerckhoff/issues"
},
"scripts": {
"start": "tsc -w",
"build": "tsc",
"prepublish": "yarn build",
"commit": "git-cz",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"tslint"
],
"*": [
"eclint check"
]
},
"ignore": [
"**/dist/*",
"*.test.*"
]
},
"dependencies": {
"@types/node": "^10.12.1",
"@types/node-fetch": "^2.1.2",
"node-fetch": "^2.2.0",
"typescript": "^3.1.4"
},
"devDependencies": {
"commitizen": "3.0.4",
"cz-conventional-changelog": "2.1.0",
"eclint": "2.8.1",
"husky": "1.1.2",
"lint-staged": "8.0.3",
"semantic-release": "^15.10.7",
"travis-deploy-once": "^5.0.9",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-eslint-rules": "5.4.0",
"tslint-react": "3.6.0"
}
}