-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.46 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
{
"name": "@spicy-ui/core",
"version": "0.1.0-alpha.9",
"description": "A themable and extensible React UI library, ready to use out of the box",
"keywords": [
"react",
"react-components",
"ui",
"ui-components",
"components",
"component-library",
"design-system",
"library",
"spicy",
"spicy-ui",
"styled-components"
],
"homepage": "https://github.com/spicy-ui/core",
"bugs": "https://github.com/spicy-ui/core/issues",
"license": "MIT",
"author": {
"name": "Alex Gabites",
"email": "[email protected]",
"url": "http://southpaw.co.nz"
},
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/core.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/spicy-ui/core.git"
},
"scripts": {
"clean": "rimraf dist storybook-static",
"start": "tsdx watch",
"start:storybook": "start-storybook -p 9000",
"build": "tsdx build",
"build:storybook": "build-storybook",
"lint": "eslint ./src && tsc --noEmit",
"test": "tsdx test --passWithNoTests"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"@spicy-ui/styled-system": "0.0.1-alpha.3",
"@types/styled-components": "^5.1.12",
"deepmerge": "^4.2.2",
"downshift": "^6.1.7",
"framer-motion": "^4.1.17",
"polished": "^4.1.3",
"react-fast-compare": "^3.2.0",
"react-focus-lock": "^2.5.2",
"react-icons": "^4.2.0",
"react-popper": "^2.2.5",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.3.7",
"@storybook/react": "^6.3.7",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-lorem-ipsum": "^1.4.9",
"react-router-dom": "^5.2.0",
"react-uid": "^2.3.1",
"rimraf": "^3.0.2",
"styled-components": "^5.3.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "4.3.5"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"styled-components": ">=5.3.0"
},
"publishConfig": {
"access": "public"
}
}