forked from HospitalRun/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
162 lines (162 loc) · 5.06 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@hospitalrun/components",
"version": "1.3.0",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/hospitalrun"
},
"main": "dist",
"module": "dist/components.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"scss"
],
"repository": {
"type": "git",
"url": "https://github.com/HospitalRun/components.git"
},
"scripts": {
"commit": "npx git-cz",
"dev": "tsdx watch",
"build": "tsdx build",
"prepublishOnly": "npm run build",
"test": "tsdx test --env=jsdom",
"test:ci": "cross-env CI=true tsdx test --env=jsdom",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"test/**/*.{js,jsx,ts,tsx}\" \"stories/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"test/**/*.{js,jsx,ts,tsx}\" \"stories/**/*.{js,jsx,ts,tsx}\" --fix",
"coveralls": "cross-env CI=true tsdx test --coverage --coverageReporters=text-lcov > lcov.info",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook",
"semantic-release": "semantic-release",
"lint-staged": "lint-staged",
"commitlint": "commitlint"
},
"peerDependencies": {
"bootstrap": "~4.4.0",
"react": "~16.9.0",
"react-bootstrap": "~1.0.0-beta.14"
},
"husky": {
"hooks": {
"commit-msg": "npm run commitlint -- -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"git add ."
]
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@commitlint/cli": "~8.3.3",
"@commitlint/config-conventional": "~8.3.3",
"@commitlint/prompt": "~8.3.3",
"@semantic-release/changelog": "~5.0.0",
"@semantic-release/commit-analyzer": "~8.0.1",
"@semantic-release/git": "~9.0.0",
"@semantic-release/github": "~7.0.3",
"@semantic-release/npm": "~7.0.3",
"@semantic-release/release-notes-generator": "~9.0.0",
"@storybook/addon-actions": "~5.3.0",
"@storybook/addon-info": "~5.3.0",
"@storybook/addon-links": "~5.3.0",
"@storybook/addons": "~5.3.0",
"@storybook/react": "~5.3.0",
"@storybook/theming": "~5.3.0",
"@types/chart.js": "~2.9.7",
"@types/enzyme": "~3.10.3",
"@types/jest": "~25.2.0",
"@types/lodash": "^4.14.149",
"@types/node": "~13.11.0",
"@types/react": "~16.9.17",
"@types/react-dom": "~16.9.1",
"@types/react-table": "^7.0.4",
"@types/sinon": "~9.0.0",
"@types/storybook__addon-info": "~5.2.0",
"@types/tinymce": "~4.5.23",
"@typescript-eslint/parser": "~2.27.0",
"@typescript-eslint/eslint-plugin": "~2.27.0",
"autoprefixer": "~9.7.3",
"awesome-typescript-loader": "~5.2.1",
"babel-loader": "~8.1.0",
"bootstrap": "~4.4.0",
"commitizen": "~4.0.3",
"commitlint-config-cz": "0.13.1",
"cross-env": "~7.0.0",
"cssnano": "~4.1.10",
"cz-conventional-changelog": "~3.1.0",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.2",
"eslint": "~6.8.0",
"eslint-config-airbnb": "~18.1.0",
"eslint-config-prettier": "~6.10.0",
"eslint-plugin-import": "~2.20.0",
"eslint-plugin-jest": "~23.8.0",
"eslint-plugin-jsx-a11y": "~6.2.3",
"eslint-plugin-prettier": "~3.1.1",
"eslint-plugin-react": "~7.19.0",
"eslint-plugin-react-hooks": "~2.5.0",
"husky": "~4.2.0",
"jest-canvas-mock": "~2.2.0",
"lint-staged": "~10.1.1",
"node-sass": "~4.13.0",
"prettier": "~1.19.1",
"react": "~16.13.0",
"react-bootstrap": "~1.0.0-beta.16",
"react-docgen": "~5.3.0",
"react-docgen-typescript-loader": "~3.7.0",
"react-dom": "~16.13.0",
"rollup-plugin-postcss": "~2.5.0",
"sass-loader": "~8.0.0",
"semantic-release": "~17.0.3",
"sinon": "~9.0.0",
"tsdx": "~0.13.0",
"tslib": "~1.11.0",
"typescript": "~3.8.2"
},
"dependencies": {
"@fortawesome/fontawesome-common-types": "~0.2.26",
"@fortawesome/fontawesome-svg-core": "~1.2.25",
"@fortawesome/free-solid-svg-icons": "~5.12.0",
"@fortawesome/react-fontawesome": "~0.1.4",
"@fullcalendar/core": "~4.3.1",
"@fullcalendar/daygrid": "~4.3.0",
"@fullcalendar/interaction": "~4.4.0",
"@fullcalendar/react": "~4.3.0",
"@fullcalendar/timegrid": "~4.3.0",
"@tinymce/tinymce-react": "~3.5.0",
"@types/react-bootstrap-typeahead": "^3.4.5",
"@types/react-datepicker": "~2.11.0",
"chart.js": "~2.9.3",
"date-fns": "^2.9.0",
"formik": "~2.1.0",
"lodash": "^4.17.15",
"moment": "~2.24.0",
"react-bootstrap-typeahead": "^4.0.0",
"react-datepicker": "~2.14.0",
"react-spinners": "~0.8.0",
"react-table": "^7.0.0",
"react-toastify": "~5.5.0",
"tinymce": "~5.2.0",
"video-react": "~0.14.1"
},
"jest": {
"setupFiles": [
"jest-canvas-mock",
"<rootDir>test-setup.ts",
"<rootDir>/__mocks__/matchMediaMock.js"
],
"moduleNameMapper": {
"\\.(css|scss|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}