-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 3.86 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
{
"name": "js-tools",
"version": "0.0.0",
"description": "Ona shared components and utilities",
"repository": "https://github.com/onaio/js-tools",
"author": "Ona Engineering",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"lint-js": "eslint '{packages,stories}/**/*.{js,jsx}'",
"lint-ts": "tslint -c tslint.json '{packages/**/src,stories}/**/*.{ts,tsx}'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"clean-build": "rimraf packages/**/dist"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"tslint -c tslint.json --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@storybook/addon-actions": "^5.0.0",
"@storybook/addon-info": "^5.0.0",
"@storybook/addon-links": "^5.0.0",
"@storybook/addon-notes": "^5.0.0",
"@storybook/addons": "^5.0.0",
"@storybook/react": "^5.0.0",
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/enzyme-to-json": "^1.5.3",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.9",
"@types/node": "^11.10.4",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"@types/react-redux": "^7.0.8",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.2",
"@types/react-syntax-highlighter": "^11.0.0",
"@types/seamless-immutable": "^7.1.8",
"@types/storybook__addon-actions": "^3.4.2",
"@types/storybook__addon-links": "^3.3.4",
"@types/storybook__react": "^4.0.1",
"@types/styled-components": "^5.1.3",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-polyfill": "^6.26.0",
"babel-preset-react-app": "^9.1.2",
"connected-react-router": "^6.4.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"flush-promises": "^1.0.2",
"formik": "^2.1.4",
"history": "^4.9.0",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"jest-haste-map": "^24.7.1",
"jest-resolve": "^24.7.1",
"jest-styled-components": "^7.0.3",
"lerna": "^3.11.1",
"lint-staged": "^8.1.3",
"mockdate": "^3.0.2",
"prettier": "^1.16.4",
"react": "^16.8.1",
"react-dom": "^16.8.3",
"react-redux": "^7.0.2",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-test-renderer": "^16.8.1",
"reactstrap": "^7.1.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.3",
"seamless-immutable": "^7.1.4",
"ts-jest": "^24.0.0",
"tsd": "^0.11.0",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3",
"webpack": "^4.29.6"
},
"dependencies": {
"styled-components": "^5.2.0"
},
"resolutions": {
"styled-components": "^5"
}
}