-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
117 lines (117 loc) · 2.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
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
115
116
117
{
"name": "@dailybruin/lux",
"version": "1.8.2",
"author": "Daily Bruin Online <online@dailybruin.com>",
"description": "The Daily Bruin's component library.",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/dailybruin/lux.git"
},
"bugs": {
"url": "https://github.com/dailybruin/lux/issues"
},
"homepage": "https://github.com/dailybruin/lux",
"keywords": [
"design system",
"journalism"
],
"main": "src/index.ts",
"files": [
"src"
],
"directories": {
"test": "tests"
},
"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.*"
]
},
"scripts": {
"start": "docz dev",
"build": "rollup -c",
"build:docs": "docz build",
"commit": "git-cz",
"test": "jest",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"@hbetts/parse-repository-url": "2.1.2",
"d3": "^5.9.1",
"emotion": "^9.2.12",
"emotion-server": "^9.2.12",
"gatsby-plugin-emotion": "^2.0.6",
"lodash.uniq": "^4.5.0",
"plyr": "^3.4.7",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-emotion": "^9.2.12",
"react-helmet": "^5.2.0",
"react-player": "2.14.1",
"react-plyr": "^2.1.1",
"react-string-replace": "0.4.4",
"slugify": "^1.3.3",
"typescript": "3.4.4",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@mdx-js/react": "1.0.20",
"@types/jest": "23.3.12",
"@types/react": "16.7.18",
"@types/react-dom": "16.0.11",
"@types/react-helmet": "5.0.8",
"@types/webfontloader": "1.6.29",
"commitizen": "3.0.5",
"cz-conventional-changelog": "2.1.0",
"docz": "1.2.0",
"docz-plugin-css": "0.11.0",
"docz-plugin-netlify": "1.1.4",
"docz-theme-default": "1.2.0",
"eclint": "2.8.1",
"gatsby": "2.0.89",
"husky": "1.3.1",
"jest": "23.6.0",
"jest-emotion": "9.2.11",
"lint-staged": "8.1.0",
"react-testing-library": "5.4.4",
"semantic-release": "15.13.2",
"travis-deploy-once": "5.0.11",
"ts-jest": "23.10.5",
"tslint": "5.16.0",
"tslint-config-prettier": "1.17.0",
"tslint-eslint-rules": "5.4.0",
"tslint-react": "3.6.0",
"webpack": "^4.28.4"
}
}