-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
108 lines (108 loc) · 3.15 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
{
"name": "allotment",
"version": "1.20.2",
"description": "React split-pane component",
"exports": {
".": {
"require": "./dist/legacy.js",
"import": "./dist/modern.mjs",
"types": "./dist/types/src/index.d.ts"
},
"./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/johnwalley/allotment.git",
"author": "johnwalley <john@walley.org.uk>",
"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.24.9",
"@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.24.7",
"@babel/preset-env": "7.24.8",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/pluginutils": "5.1.3",
"@storybook/addon-actions": "7.6.20",
"@storybook/addon-essentials": "7.6.20",
"@storybook/addon-links": "7.6.20",
"@storybook/react": "7.6.20",
"@storybook/react-webpack5": "7.6.20",
"@testing-library/dom": "9.3.4",
"@types/jest": "29.5.14",
"@types/lodash.clamp": "4.0.9",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.isequal": "4.5.8",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/parser": "6.21.0",
"@vscode/codicons": "0.0.36",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"css-loader": "6.11.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-storybook": "0.8.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.10",
"postcss": "8.4.47",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"rollup": "4.19.0",
"rollup-plugin-postcss": "4.0.2",
"storybook": "7.6.20",
"storybook-dark-mode": "3.0.3",
"style-loader": "3.3.4",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"webpack": "5.91.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 && npm run build-types",
"build-storybook": "storybook build",
"build-types": "tsc",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"test": "jest"
}
}