-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.61 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
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": "@blateral/b.kit",
"version": "3.0.1",
"description": "",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"files": [
"cjs/*",
"esm/*",
"types/*",
"lib/*"
],
"scripts": {
"build": "yarn test && rollup -c && node postbuild.mjs",
"watch": "rollup -c -w",
"storybook": "start-storybook -s ./public -p 9000 -c .storybook --no-manager-cache",
"deploy-storybook": "yarn storybook-to-ghpages",
"build-storybook": "build-storybook -c .storybook -s ./public",
"push-yalc": "yarn build && yalc push --sig",
"tc": "tsc --noEmit",
"check-publish": "yarn pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"deploy": "yarn tc && yarn build && yarn publish",
"deploy-patch": "yarn tc && yarn build && yarn publish --tag patch",
"deploy-beta": "yarn tc && yarn build && yarn publish --tag beta",
"prepare": "npx husky install && npx yalc --version",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blateral/b.kit.git"
},
"keywords": [],
"author": "Lukas Wochner <lukas.wochner@blateral.com>, Maja Merk <maja.merk@blateral.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/blateral/b.kit/issues"
},
"homepage": "https://github.com/blateral/b.kit#readme",
"devDependencies": {
"@etchteam/storybook-addon-status": "^4.2.1",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.2.1",
"@storybook/addon-a11y": "6.5.12",
"@storybook/addon-essentials": "6.5.12",
"@storybook/react": "6.5.12",
"@storybook/storybook-deployer": "^2.8.11",
"@storybook/theming": "6.5.12",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.8",
"@types/react-datepicker": "4.3.4",
"@types/react-dom": "^18.0.0",
"@types/react-leaflet": "2.5.0",
"@types/styled-components": "5.1.25",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"@zerollup/ts-transform-paths": "1.7.18",
"babel-plugin-styled-components": "2.0.7",
"eslint": "8.14.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"fast-deep-equal": "^3.1.3",
"formik": "^2.2.9",
"husky": "^7.0.0",
"jest": "^28.1.0",
"leaflet": "1.9.1",
"react": "^18.1.0",
"react-datepicker": "4.6.0",
"react-dom": "^18.1.0",
"react-schemaorg": "^2.0.0",
"rollup": "2.70.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"schema-dts": "^1.0.0",
"styled-components": "5.3.5",
"ts-jest": "^28.0.3",
"ttypescript": "1.5.13",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@types/react-datepicker": "4.3.4",
"@types/yup": "^0.29.11",
"formik": "^2.2.9",
"leaflet": "1.7.1",
"react": "^18.1.0",
"react-datepicker": "4.6.0",
"react-dom": "^18.1.0",
"react-schemaorg": "^2.0.0",
"schema-dts": "^1.0.0",
"styled-components": "5.3.5"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"styled-components": "^5",
"typescript": "^4"
}
}