1 | {
|
2 | "name": "re-resizable",
|
3 | "version": "6.10.0",
|
4 | "description": "Resizable component for React.",
|
5 | "title": "re-resizable",
|
6 | "main": "./lib/index.es5.js",
|
7 | "module": "./lib/index.js",
|
8 | "jsnext:main": "./lib/index.js",
|
9 | "keywords": [
|
10 | "react",
|
11 | "resize",
|
12 | "resizable",
|
13 | "component"
|
14 | ],
|
15 | "scripts": {
|
16 | "lint": "tslint -c tslint.json src/index.tsx",
|
17 | "tsc": "tsc -p tsconfig.json",
|
18 | "build:prod:main": "rollup -c scripts/prod.js",
|
19 | "build:prod:es5": "rollup -c scripts/prod.es5.js",
|
20 | "build": "npm-run-all --serial build:prod:* && tsc",
|
21 | "start": "npm-run-all --parallel storybook",
|
22 | "test": "npm run test-ct",
|
23 | "test:ci": "npm run flow && npm run build",
|
24 | "prepublish": "npm run build",
|
25 | "format": "prettier --write '**/*.{tsx,ts}'",
|
26 | "format:ci": "prettier '**/*.{tsx,ts}'",
|
27 | "storybook": "start-storybook -p 6066",
|
28 | "build-storybook": "build-storybook",
|
29 | "deploy": "npm run build-storybook && gh-pages -d storybook-static",
|
30 | "test-ct": "playwright test -c playwright-ct.config.ts"
|
31 | },
|
32 | "repository": {
|
33 | "type": "git",
|
34 | "url": "https://github.com/bokuweb/react-resizable-box.git"
|
35 | },
|
36 | "author": "bokuweb",
|
37 | "license": "MIT",
|
38 | "bugs": {
|
39 | "url": "https://github.com/bokuweb/react-resizable-box/issues"
|
40 | },
|
41 | "homepage": "https://github.com/bokuweb/react-resizable-box",
|
42 | "devDependencies": {
|
43 | "@babel/cli": "7.11.6",
|
44 | "@babel/core": "7.11.6",
|
45 | "@babel/eslint-parser": "7.11.0",
|
46 | "@babel/plugin-proposal-class-properties": "7.10.4",
|
47 | "@babel/plugin-transform-modules-commonjs": "7.10.4",
|
48 | "@babel/preset-react": "7.10.4",
|
49 | "@babel/preset-typescript": "7.10.4",
|
50 | "@babel/traverse": "7.23.2",
|
51 | "@babel/types": "7.11.5",
|
52 | "@emotion/core": "10.0.35",
|
53 | "@playwright/experimental-ct-react": "^1.43.1",
|
54 | "@storybook/addon-info": "5.3.21",
|
55 | "@storybook/addon-options": "5.3.21",
|
56 | "@storybook/react": "6.0.28",
|
57 | "@types/node": "12.12.70",
|
58 | "@types/react": "16.8.7",
|
59 | "@types/react-dom": "17.0.9",
|
60 | "@types/sinon": "9.0.10",
|
61 | "babel-core": "7.0.0-bridge.0",
|
62 | "babel-loader": "8.1.0",
|
63 | "babel-plugin-external-helpers": "6.22.0",
|
64 | "babel-plugin-transform-class-properties": "6.24.1",
|
65 | "babel-plugin-transform-object-assign": "6.22.0",
|
66 | "babel-plugin-transform-object-rest-spread": "6.26.0",
|
67 | "babel-polyfill": "6.26.0",
|
68 | "babel-preset-env": "1.7.0",
|
69 | "babel-preset-es2015": "6.24.1",
|
70 | "babel-preset-flow": "6.23.0",
|
71 | "babel-preset-react": "6.24.1",
|
72 | "babel-register": "6.26.0",
|
73 | "cross-env": "7.0.3",
|
74 | "gh-pages": "5.0.0",
|
75 | "npm-run-all2": "5.0.0",
|
76 | "playwright-core": "^1.43.1",
|
77 | "prettier": "1.19.1",
|
78 | "react": "^18.3.0",
|
79 | "react-dom": "^18.3.0",
|
80 | "rollup": "1.32.1",
|
81 | "rollup-plugin-babel": "4.4.0",
|
82 | "rollup-plugin-commonjs": "10.1.0",
|
83 | "rollup-plugin-node-globals": "1.4.0",
|
84 | "rollup-plugin-node-resolve": "5.2.0",
|
85 | "rollup-plugin-replace": "2.2.0",
|
86 | "rollup-plugin-typescript2": "0.27.3",
|
87 | "rollup-watch": "4.3.1",
|
88 | "sinon": "9.0.3",
|
89 | "tslint": "6.1.3",
|
90 | "tslint-config-google": "1.0.1",
|
91 | "tslint-config-prettier": "1.18.0",
|
92 | "tslint-plugin-prettier": "2.3.0",
|
93 | "typescript": "4.0.5"
|
94 | },
|
95 | "typings": "./lib/index.d.ts",
|
96 | "types": "./lib/index.d.ts",
|
97 | "files": [
|
98 | "lib"
|
99 | ],
|
100 | "peerDependencies": {
|
101 | "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
102 | "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
103 | }
|
104 | }
|