-
Notifications
You must be signed in to change notification settings - Fork 460
/
package.json
112 lines (112 loc) · 3.32 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
105
106
107
108
109
110
111
112
{
"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"
},
"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",
"html-webpack-plugin": "3.2.0",
"immutable": "3.8.2",
"immutablediff": "0.4.4",
"immutablepatch": "0.5.0",
"polylabel": "1.0.2",
"prop-types": "15.7.2",
"react-icons": "3.5.0",
"react-redux": "5.0.7",
"react-svg-pan-zoom": "2.18.0",
"react-tabs": "3.0.0",
"redux": "4.0.1",
"shortid": "2.2.14"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-import-glob": "2.0.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"const-version": "2.0.0",
"cross-env": "5.2.0",
"file-loader": "3.0.1",
"gh-pages": "2.0.1",
"immutable-devtools": "0.1.4",
"react": "16.8.5",
"react-container-dimensions": "1.4.1",
"react-dom": "16.8.5",
"rimraf": "2.6.3",
"style-loader": "0.23.1",
"three": "0.94.0",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.7.1"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"three": "0.94.x"
}
}