forked from leefsmp/Re-Flex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.67 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
{
"name": "react-reflex",
"version": "4.2.6",
"description": "Flex layout component for advanced React web applications",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"styles.css"
],
"scripts": {
"build-demo-dev": "webpack --watch --config ./webpack/demo/development.webpack.config",
"build-demo": "webpack --config ./webpack/demo/production.webpack.config",
"build-dev": "webpack --config ./webpack/lib/development.webpack.config",
"build-lib-umd-dev": "webpack --config ./webpack/lib/development.webpack.config",
"build-lib-umd": "webpack --config ./webpack/lib/production.webpack.config",
"build-lib-commonjs": "rimraf dist/commonjs && BABEL_ENV=commonjs babel src/lib --out-dir=dist/commonjs",
"build-lib-es": "rimraf dist/es && BABEL_ENV=es babel src/lib --out-dir=dist/es",
"prebuild-css": "rimraf styles.css && node-sass src/lib/reflex-styles.scss styles.css",
"build-css": "npm run prebuild-css && postcss styles.css -u autoprefixer -r",
"build-dts": "copy ./index.d.ts ./dist",
"build": "npm run build-css && npm run build-lib-commonjs && npm run build-lib-es && npm run build-lib-umd && npm run build-lib-umd-dev && npm run build-dts && npm run build-demo",
"prepublish": "npm run build"
},
"author": "Philippe Leefsma",
"license": "MIT",
"keywords": [
"flex",
"layout",
"react",
"reactjs",
"react-component",
"pane",
"panel",
"split-pane",
"split-panel",
"resize",
"resizable",
"splitter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leefsmp/Re-Flex.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-proposal-do-expressions": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-proposal-function-bind": "7.0.0",
"@babel/plugin-proposal-function-sent": "7.1.0",
"@babel/plugin-proposal-logical-assignment-operators": "7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "7.0.0",
"@babel/plugin-proposal-throw-expressions": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-syntax-import-meta": "7.0.0",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"autoprefixer": "9.3.1",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "8.0.4",
"babel-plugin-istanbul": "^5.1.4",
"clean-webpack-plugin": "0.1.19",
"copy": "^0.3.2",
"cp": "^0.2.0",
"css-loader": "1.0.0",
"es6-promise": "^4.2.5",
"eslint": "^6.0.1",
"eslint-plugin-react": "^2.3.0",
"node-sass": "^6.0.1",
"postcss-cli": "^6.1.3",
"postcss-loader": "3.0.0",
"precss": "3.1.2",
"react": "^16.2.0",
"react-dom": "^16.0.0",
"react-hot-loader": "4.3.11",
"rimraf": "^2.6.1",
"sass-loader": "10.2.1",
"style-loader": "0.23.0",
"webpack": "4.36.0",
"webpack-cli": "3.1.2"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.5.8",
"react-measure": "^2.0.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
}