This repository has been archived by the owner on Nov 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
171 lines (171 loc) · 5.13 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
163
164
165
166
167
168
169
170
171
{
"name": "@exivity/ui",
"version": "0.21.3",
"description": "A collection of components to build interfaces",
"keywords": [
"exivity",
"ui"
],
"homepage": "https://github.com/exivity/ui",
"bugs": {
"url": "https://github.com/exivity/ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/exivity/ui.git"
},
"license": "MIT",
"contributors": [
"Michiel de Vos <michiel_87@hotmail.com>",
"Stefan Wullems <stefanwullems1998@gmail.com>",
"Joram van den Boezem <joram@vandenboezem.nl>"
],
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib/*"
],
"scripts": {
"create-component": "node scripts/create-component.js",
"lint": "eslint src/**/*.ts? --quiet",
"lint:fix": "eslint src/**/*.ts? --fix",
"test": "cross-env CI=true react-scripts test --coverage",
"test:watch": "react-scripts test",
"test:smoke": "bash scripts/run-smoke-test.sh",
"test:update": "cross-env CI=true react-scripts test --updateSnapshot",
"docs:watch": "start-storybook -p 9009 -c docs -s docs/public",
"docs:build": "build-storybook -c docs -s docs/public -o docs/static",
"docs:publish": "bash scripts/publish-docs.sh",
"start": "run-p docs:watch",
"build": "yarn lib:clean && yarn lib:build && yarn docs:build",
"lib:clean": "rimraf lib",
"lib:build": "node scripts/build-lib.js",
"lib:watch": "node scripts/watch-lib.js",
"commit": "git-cz",
"npm:publish": "bash scripts/publish-npm.sh",
"version:bump": "yarn standard-version",
"git:push": "git push --follow-tags origin master",
"release": "bash scripts/release.sh",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"ignore": [],
"linters": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**/*.{ts,tsx}",
"!<rootDir>/src/**/*.stories.{ts,tsx}",
"!<rootDir>/src/**/stories/**",
"!<rootDir>/src/**/tests/**"
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@dr-kobros/react-webfont-loader": "^8.0.0",
"@rooks/use-timeout": "^3.3.0",
"@types/color": "^3.0.0",
"@types/react-syntax-highlighter": "^11.0.0",
"@types/react-window": "^1.7.0",
"@types/styled-components": "^4.1.12",
"@types/styled-system": "^4.0.0",
"color": "^3.1.0",
"date-fns": "^1.30.1",
"react-icons": "^3.5.0",
"react-markdown": "^4.0.6",
"react-popper": "^1.3.4",
"react-spring": "^8.0.14",
"react-syntax-highlighter": "^11.0.2",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.7.1",
"snyk": "^1.222.0",
"styled-components": "^4.1.3",
"styled-system": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addon-storysource": "^5.2.1",
"@storybook/addon-viewport": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/cli": "^5.2.1",
"@storybook/react": "^5.2.1",
"@storybook/theming": "^5.2.1",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^8.0.1",
"@testing-library/react-hooks": "^3.1.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.11",
"@types/jest-specific-snapshot": "^0.5.3",
"@types/react": "^16.9.4",
"@types/react-dom": "^16.9.1",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/storybook__addon-actions": "^3.4.3",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"commitizen": "^3.0.7",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "5.12.0",
"eslint-config-exivity": "^1.0.9",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jest-formatting": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"faker": "^4.1.0",
"husky": "^2.0.0",
"jest-specific-snapshot": "^2.0.0",
"jest-styled-components": "^6.3.1",
"lint-staged": "^8.1.5",
"npm-run-all": "^4.1.5",
"prism-react-renderer": "latest",
"react": "^16.10.1",
"react-docgen-typescript-loader": "^3.0.1",
"react-dom": "^16.10.1",
"react-hooks-testing-library": "^0.5.1",
"react-live": "^2.0.0",
"react-scripts": "2.1.8",
"react-test-renderer": "^16.9.0",
"require-context.macro": "^1.0.4",
"rimraf": "^2.6.2",
"standard-version": "^6.0.1",
"typescript": "^3.6.3"
},
"peerDependencies": {
"react": "^16.10.1",
"react-dom": "^16.10.1"
},
"snyk": true
}