forked from johnwalley/allotment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.46 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
{
"name": "allotment",
"version": "1.2.0",
"description": "React split-pane component",
"exports": {
".": "./dist/modern.js",
"./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 <[email protected]>",
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.css",
"dist/types/src/**/*.d.ts"
],
"dependencies": {
"classnames": "^2.3.0",
"eventemitter3": "^4.0.0",
"lodash.clamp": "^4.0.0",
"lodash.debounce": "^4.0.0",
"use-resize-observer": "^8.0.0"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-private-methods": "7.14.5",
"@babel/plugin-proposal-private-property-in-object": "7.15.4",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.6",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-essentials": "6.3.12",
"@storybook/addon-links": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/dom": "8.11.1",
"@types/jest": "27.0.3",
"@types/lodash.clamp": "4.0.6",
"@types/lodash.debounce": "4.0.6",
"@typescript-eslint/parser": "5.3.1",
"babel-loader": "8.2.3",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"postcss": "8.3.11",
"prettier": "2.4.1",
"pretty-quick": "3.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "2.60.1",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2",
"standard-version": "9.3.2",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "4.4.4"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"scripts": {
"build": "rollup -c && yarn build-types",
"build-storybook": "build-storybook",
"build-types": "tsc",
"prepare": "husky install",
"release": "standard-version",
"storybook": "start-storybook -p 6006",
"test": "jest"
}
}