forked from johnwalley/allotment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.02 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
{
"name": "allotment",
"version": "1.20.0",
"description": "React split-pane component",
"exports": {
".": "./dist/modern.mjs",
"./dist/": "./dist/"
},
"main": "./dist/legacy.js",
"module": "./dist/module.js",
"types": "./dist/types/src/index.d.ts",
"keywords": [
"react",
"split",
"pane",
"view"
],
"repository": "https://github.com/cgrime01/allotment.git",
"author": "johnwalley <[email protected]>",
"license": "MIT",
"homepage": "https://allotment.mulberryhousesoftware.com/",
"files": [
"dist/*.mjs",
"dist/*.js",
"dist/*.css",
"dist/types/src/**/*.d.ts"
],
"dependencies": {
"classnames": "^2.3.0",
"eventemitter3": "^5.0.0",
"lodash.clamp": "^4.0.0",
"lodash.debounce": "^4.0.0",
"lodash.isequal": "^4.5.0",
"use-resize-observer": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/plugin-transform-runtime": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.2",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-terser": "0.4.3",
"@storybook/addon-actions": "7.0.23",
"@storybook/addon-essentials": "7.0.23",
"@storybook/addon-links": "7.0.23",
"@storybook/react": "7.0.23",
"@storybook/react-webpack5": "7.0.23",
"@testing-library/dom": "9.3.1",
"@types/jest": "29.5.2",
"@types/lodash.clamp": "4.0.7",
"@types/lodash.debounce": "4.0.7",
"@types/lodash.isequal": "4.5.6",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/parser": "5.60.1",
"@vscode/codicons": "0.0.33",
"babel-jest": "29.5.0",
"babel-loader": "9.1.2",
"css-loader": "6.8.1",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"postcss": "8.4.24",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "3.25.3",
"rollup-plugin-postcss": "4.0.2",
"standard-version": "9.5.0",
"storybook": "7.0.23",
"storybook-dark-mode": "3.0.0",
"style-loader": "3.3.3",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.1.3",
"webpack": "5.88.0",
"xterm": "5.1.0",
"xterm-addon-fit": "0.7.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"scripts": {
"build": "rollup -c && yarn build-types",
"build-storybook": "storybook build",
"build-types": "tsc",
"prepare": "husky install",
"release": "standard-version",
"storybook": "storybook dev -p 6006",
"test": "jest"
}
}