forked from cvdlab/react-planner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.71 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.71 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-planner",
"version": "2.0.6",
"description": "react-planner is a React Component for plans design. Draw a 2D floorplan and navigate it in 3D mode.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"start": "webpack-dev-server --inline --config demo/webpack.config.js --port 9000 --mode development",
"build-demo": "webpack --config demo/webpack.config.js --mode production",
"build-commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build-es": "cross-env BABEL_ENV=es babel src --copy-files --out-dir es",
"build": "npm run clean && npm run build-demo && npm run build-commonjs && npm run build-es",
"add-build-to-vcs": "git add -A src/version.js && git add -A es && git add -A lib && git add -A demo/dist",
"clean": "rimraf lib es demo/dist",
"website-update": "gh-pages -m 'Update gh-pages' -d ./demo/dist/",
"update-version-file": "const-version ./package.json ./src/version.js",
"version": "npm run update-version-file && npm run build && npm run add-build-to-vcs",
"postpublish": "npm run website-update",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint './+(src|demo)/**/*.{js,jsx}?'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cvdlab/react-planner.git"
},
"keywords": [
"floorplanner",
"plan",
"svg",
"3d",
"home design",
"interior design",
"react",
"react-component",
"react.js",
"ui",
"interface",
"component"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cvdlab/react-planner/issues"
},
"maintainers": [
{
"url": "https://github.com/chrvadala",
"name": "chrvadala"
},
{
"url": "https://github.com/danilosalvati",
"name": "danilosalvati"
},
{
"url": "https://github.com/enricomarino",
"name": "enricomarino"
},
{
"url": "https://github.com/federicospini",
"name": "federicospini"
},
{
"url": "https://github.com/alessiocarrafa",
"name": "alessiocarrafa"
}
],
"homepage": "https://github.com/cvdlab/react-planner#readme",
"dependencies": {
"@mapbox/react-range": "0.0.7",
"area-polygon": "1.0.1",
"convert-units": "2.3.4",
"immutable": "3.8.2",
"immutablediff": "0.4.4",
"immutablepatch": "0.5.0",
"memoize-one": "~5.1.1",
"polylabel": "1.0.2",
"prop-types": "15.7.2",
"react-container-dimensions": "1.4.1",
"react-icons": "~3.7.0",
"react-redux": "~7.1.1",
"react-svg-pan-zoom": "~3.3.0",
"react-tabs": "3.0.0",
"redux": "~4.0.4",
"shortid": "~2.2.15"
},
"devDependencies": {
"@babel/cli": "~7.6.2",
"@babel/core": "~7.6.2",
"@babel/plugin-proposal-class-properties": "~7.5.5",
"@babel/plugin-proposal-decorators": "~7.6.0",
"@babel/plugin-proposal-object-rest-spread": "~7.6.2",
"@babel/plugin-transform-runtime": "~7.6.2",
"@babel/preset-env": "~7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "~7.6.2",
"babel-eslint": "~10.0.3",
"babel-loader": "^8.0.0",
"babel-plugin-import-glob": "2.0.0",
"const-version": "2.0.0",
"cross-env": "~5.2.1",
"eslint": "~6.5.1",
"eslint-plugin-react": "~7.15.1",
"file-loader": "~4.2.0",
"gh-pages": "~2.1.1",
"html-webpack-plugin": "3.2.0",
"immutable-devtools": "0.1.4",
"react": "~16.10.1",
"react-dom": "~16.10.1",
"rimraf": "~3.0.0",
"style-loader": "~1.0.0",
"three": "~0.109.0",
"webpack": "~4.41.0",
"webpack-cli": "~3.3.9",
"webpack-dev-server": "~3.8.2"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"three": "0.94.x"
}
}