-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 KB
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
{
"name": "ursa-react",
"version": "1.1.27",
"description": "A set of simple plain react components with the intention to provide a simple not too opinionated library.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"clean": "tsc --build --clean",
"publish": "tsc --build && npm pack && npm publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bschrenk/ursa-react.git"
},
"keywords": [
"react",
"components"
],
"author": "Branden Schrenk",
"license": "MIT",
"bugs": {
"url": "https://github.com/bschrenk/ursa-react/issues"
},
"homepage": "https://bschrenk.github.io/ursa-react",
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-themes": "^7.5.1",
"@storybook/blocks": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/react-webpack5": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@types/react": "^18.2.30",
"gh-pages": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.5.1",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2"
},
"dependencies": {
"styled-components": "^6.1.0"
}
}