-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
125 lines (125 loc) · 3.56 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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-spaces",
"version": "0.2.2",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.*"
],
"repository": "github:aeagle/react-spaces",
"author": {
"name": "Allan Eagle",
"url": "https://www.allaneagle.com"
},
"bugs": "https://github.com/aeagle/react-spaces/issues",
"homepage": "https://allaneagle.com/projects/react-spaces",
"keywords": [
"react",
"reactjs",
"reactjs components",
"component library",
"components",
"web",
"web ui",
"javascript library"
],
"license": "MIT",
"description": "An easy to understand and nestable layout system, React Spaces allow you to divide a page or container into anchored, scrollable and resizable spaces enabling you to build desktop type user interfaces in the browser.",
"dependencies": {
"css-element-queries": "^1.2.1",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@chromatic-com/storybook": "^1.3.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^8.0.8",
"@storybook/addon-docs": "^8.0.8",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^8.0.8",
"@storybook/addon-mdx-gfm": "^8.0.8",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/react": "^8.0.8",
"@storybook/react-webpack5": "^8.0.8",
"@storybook/test": "^8.0.8",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"@types/prop-types": "^15.7.3",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"acorn": "^7.1.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"babel-plugin-external-helpers": "^6.22.0",
"cssstyle": "^2.3.0",
"is-svg": "^4.2.2",
"jest": "^26.6.3",
"jest-environment-jsdom": "^26.6.2",
"jest-expect-message": "^1.0.2",
"prettier": "^1.19.1",
"react": "^18.1.0",
"react-docgen-typescript-loader": "^3.7.0",
"react-dom": "^18.1.0",
"rollup": "^2.60.0",
"rollup-plugin-fork-ts-checker": "0.0.6",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.31.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-watch": "^4.3.1",
"sass": "^1.52.1",
"sass-loader": "^8.0.2",
"storybook": "^8.0.8",
"ts-jest": "^26.5.6",
"ts-loader": "^6.2.1",
"tslib": "^2.6.2",
"typescript": "^4.4.4"
},
"resolutions": {
"cssstyle": "2.3.0",
"jest-chain": "1.1.6"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18",
"react-dom": "^16.8.0 || ^17 || ^18"
},
"scripts": {
"start": "rollup -c -w",
"build": "npm run build:prod",
"build:prod": "rollup -c",
"publish:beta": "npm publish --tag beta",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-typescript"
]
}
}