-
-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
104 lines (104 loc) · 3.36 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": "re-resizable",
"version": "6.10.1",
"description": "Resizable component for React.",
"title": "re-resizable",
"main": "./lib/index.es5.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"keywords": [
"react",
"resize",
"resizable",
"component"
],
"scripts": {
"lint": "tslint -c tslint.json src/index.tsx",
"tsc": "tsc -p tsconfig.json",
"build:prod:main": "rollup -c scripts/prod.js",
"build:prod:es5": "rollup -c scripts/prod.es5.js",
"build": "npm-run-all --serial build:prod:* && tsc",
"start": "npm-run-all --parallel storybook",
"test": "npm run test-ct",
"test:ci": "npm run flow && npm run build",
"prepublish": "npm run build",
"format": "prettier --write '**/*.{tsx,ts}'",
"format:ci": "prettier '**/*.{tsx,ts}'",
"storybook": "start-storybook -p 6066",
"build-storybook": "build-storybook",
"deploy": "npm run build-storybook && gh-pages -d storybook-static",
"test-ct": "playwright test -c playwright-ct.config.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/bokuweb/react-resizable-box.git"
},
"author": "bokuweb",
"license": "MIT",
"bugs": {
"url": "https://github.com/bokuweb/react-resizable-box/issues"
},
"homepage": "https://github.com/bokuweb/react-resizable-box",
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/eslint-parser": "7.11.0",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@babel/traverse": "7.23.2",
"@babel/types": "7.11.5",
"@emotion/core": "10.0.35",
"@playwright/experimental-ct-react": "^1.43.1",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-options": "5.3.21",
"@storybook/react": "6.0.28",
"@types/node": "12.12.70",
"@types/react": "16.8.7",
"@types/react-dom": "17.0.9",
"@types/sinon": "9.0.10",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "8.1.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-register": "6.26.0",
"cross-env": "7.0.3",
"gh-pages": "5.0.0",
"npm-run-all2": "5.0.0",
"playwright-core": "^1.43.1",
"prettier": "1.19.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-typescript2": "0.27.3",
"rollup-watch": "4.3.1",
"sinon": "9.0.3",
"tslint": "6.1.3",
"tslint-config-google": "1.0.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "4.0.5"
},
"typings": "./lib/index.d.ts",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0"
}
}