-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.25 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
{
"name": "londo-ui",
"version": "0.1.44",
"description": "The spectacular view. A component library for React web apps.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"react",
"react-components",
"dark-mode",
"ui-library",
"londo-ui"
],
"scripts": {
"storybook": "storybook dev -p 6006",
"build": "npm run clean && npm run build-js && npm run build-ts",
"build-storybook": "storybook build",
"build-js": "cross-env NODE_ENV=production babel src --ignore src/stories --extensions \".ts,.tsx\" --out-dir dist",
"build-ts": "tsc --emitDeclarationOnly",
"check-types": "tsc --noEmit",
"lint": "eslint --fix src",
"test": "jest",
"clean": "rimraf dist",
"prepare": "husky",
"release": "standard-version"
},
"lint-staged": {
"*.{js,ts,tsx,css,json,md}": "prettier --write",
"*.{ts,tsx}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"browserslist": [
"defaults"
],
"dependencies": {
"@floating-ui/react-dom": "^2.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"aria-hidden": "^1.2.4",
"copy-to-clipboard": "^3.3.3",
"framer-motion": "^11.2.11",
"nanoid": "^5.0.7",
"react-focus-lock": "^2.12.1",
"react-remove-scroll": "^2.5.10",
"styled-system": "^5.1.5"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"styled-components": ">=5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@storybook/addon-docs": "^8.1.10",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-mdx-gfm": "^8.1.10",
"@storybook/addon-themes": "^8.1.10",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/manager-api": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-webpack5": "^8.1.10",
"@storybook/theming": "^8.1.10",
"@types/jest": "^29.2.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.21",
"@types/styled-system": "^5.1.15",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^1.12.0",
"cross-env": "^7.0.3",
"csstype": "^3.0.10",
"eslint": "^8.6.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"standard-version": "^9.3.0",
"storybook": "^8.1.10",
"styled-components": "^5.3.11",
"typescript": "^4.5.5",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/jsalis/londo-ui.git"
},
"author": "jsalis <[email protected]>",
"license": "MIT"
}