-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.99 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
{
"name": "@xcorejs/ui",
"version": "0.8.0",
"description": "Flexible, themeable React component library for applications with advanced UI design requirements which is suitable for creating tailored design systems.",
"main": "lib/index.js",
"module": "lib/index.es.js",
"jsnext:main": "lib/index.es.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/xcorejs/ui",
"license": "MIT",
"contributors": [
{
"name": "Denis Homolik",
"email": "denis@homolik.cz",
"url": "http://homolik.cz"
},
{
"name": "Pavel Vondrasek",
"email": "pavel@appio.cz"
},
{
"name": "Tomas Nyvlt",
"email": "tomas@nyvlt.xyz"
},
{
"name": "Martin Skara",
"email": "jsem@skaramart.in"
}
],
"scripts": {
"storybook": "start-storybook -p 3001",
"storybook-ci": "start-storybook --ci --smoke-test",
"build": "rollup -c",
"ts-check": "yarn tsc --noEmit",
"lint": "eslint \"{src,stories}/**/*.{ts,tsx}\"",
"ci": "yarn lint && yarn build && yarn test && yarn storybook-ci",
"test": "jest"
},
"dependencies": {
"@reach/portal": "^0.8.5",
"@styled-system/core": "^5.1.2",
"lorem-ipsum": "^2.0.3",
"polished": "^3.4.4",
"react-animate-height": "^2.0.20",
"use-debounce": "^3.3.0"
},
"peerDependencies": {
"react": ">= 16.8.0",
"styled-components": ">=4"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-typescript": "^4.0.0",
"@storybook/addon-storyshots": "^5.3.18",
"@storybook/react": "^5.2.8",
"@types/jest": "^24.9.0",
"@types/react": "^16.9.19",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "^5.0.1",
"@types/styled-system": "^5.1.9",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"csstype": "^2.6.8",
"eslint": "^6.8.0",
"eslint-config-alfonz": "0.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-styled-components": "^7.0.2",
"react": "^16.12.0",
"react-dom": "^16.13.0",
"react-is": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^1.20.0",
"styled-components": "^5.0.1",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslib": "^1.11.1",
"typescript": "^3.7.2",
"webpack": "^4.42.1"
},
"keywords": [
"react",
"typescript",
"design-system",
"css-in-js",
"styled-components"
]
}