forked from jakeNiemiec/react-floorplanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.42 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
113
114
115
116
117
118
119
120
121
122
{
"name": "react-floorplanner",
"description": "react-floorplanner is a React Component for plans design. Draw a 2D floorplan and navigate it in 3D mode.",
"version": "0.0.0",
"main": "src/index.js",
"directories": {
"lib": "src",
"example": "src/demo",
"doc": "doc"
},
"module": "src/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"start": "webpack-dev-server --inline --env.port 9000",
"profile": "webpack --profile --json --env.quiet > ./dist/profile.json",
"build": "npm run clean && NODE_ENV=production webpack",
"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 ./dist ./src/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",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/jakeNiemiec/react-floorplanner.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/jakeNiemiec/react-floorplanner/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/jakeNiemiec/react-floorplanner#readme",
"dependencies": {
"@mapbox/react-range": "0.0.7",
"area-polygon": "1.0.1",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-import-glob": "2.0.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2015-webpack2": "1.0.0",
"babel-preset-react": "6.24.1",
"const-version": "1.0.1",
"convert-units": "2.3.1",
"cross-env": "5.1.1",
"file-loader": "1.1.5",
"gh-pages": "1.0.0",
"git-rev-sync": "1.9.1",
"html-webpack-plugin": "2.30.1",
"immutable": "3.8.2",
"immutablediff": "0.4.4",
"open-browser-webpack-plugin": "0.0.5",
"polylabel": "1.0.2",
"prop-types": "15.6.0",
"react": "16.x",
"react-container-dimensions": "1.3.2",
"react-dom": "16.x",
"react-icons": "^2.2.7",
"react-modal": "^3.14.4",
"react-numeric-input": "2.2.0",
"react-redux": "5.0.6",
"react-svg-pan-zoom": "2.13.0",
"redux": "3.7.2",
"rimraf": "2.6.2",
"shortid": "2.2.8",
"three": "0.87.x",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.3"
},
"babel": {
"presets": [
"react-app"
]
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"three": "0.87.x"
},
"devDependencies": {
"semantic-release": "^8.2.0"
}
}