-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.49 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.49 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
{
"name": "@appbaseio/reactivemaps",
"version": "1.0.0-alpha43",
"description": "Data Components for building map UIs",
"main": "lib/app.js",
"scripts": {
"test": "jest",
"lint": "esw app --color --watch",
"webpack-server": "webpack-dev-server --hot --inline --progress --colors --port 8012",
"web-server": "http-server -p 3000 .",
"start": "cross-env CHOOSE_CONFIG=EXAMPLES && concurrently \"npm run webpack-server\" \"gulp watch\" ",
"build": "cross-env NODE_ENV=production && cross-env CHOOSE_CONFIG=EXAMPLES && webpack -p --progress && gulp",
"build:lib": "gulp && cross-env NODE_ENV=production && cross-env CHOOSE_CONFIG=LIB babel app --out-dir lib",
"build:umd": "cross-env NODE_ENV=development && webpack --config webpack.config.umd.js app/app.js umd/ReactiveMaps.js",
"build-bro": "browserify -t [ babelify --presets [ es2015 stage-0 react ] ] main.js -o dist/main.bundle.js",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public -o playground",
"build:all": "npm run build && npm run build:lib && npm run build:umd && npm run build-storybook"
},
"jest": {
"rootDir": "./tests"
},
"files": [
"lib/",
"dist/",
"umd/",
"examples/"
],
"author": {
"name": "Farhan Chauhan",
"email": "farhan@appbase.io",
"url": "https://github.com/farhan687"
},
"license": "Apache-2.0",
"dependencies": {
"@appbaseio/reactivebase": "git+https://github.com/rbajaniya/reactivebase-dev.git",
"@appbaseio/reactivemaps-manual": "1.0.0-alpha",
"appbase-js": "^0.11.0",
"axios": "^0.15.2",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.2.5",
"fbemitter": "^2.0.2",
"google-map-react": "^0.14.5",
"google-maps": "^3.2.1",
"lodash": "^4.15.0",
"node-sass": "^4.5.1",
"rc-slider": "^5.4.0",
"react": "15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "15.4.2",
"react-google-maps": "^4.11.0",
"react-select": "^1.0.0-rc.3",
"react-tooltip": "^3.1.8"
},
"devDependencies": {
"@kadira/storybook": "^2.34.0",
"@kadira/storybook-addon-knobs": "^1.7.1",
"@kadira/storybook-addon-options": "^1.0.1",
"babel-cli": "^6.23.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-shim": "^3.8.12",
"concurrently": "^2.0.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"eslint-watch": "^3.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-file-include": "^1.0.0",
"gulp-jshint": "^2.0.0",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"gulp-uglify": "^1.5.3",
"jest": "^18.1.0",
"json-loader": "^0.5.4",
"lodash-webpack-plugin": "^0.10.7",
"materialize-css": "^0.98.0",
"raw": "^0.1.4",
"raw-loader": "^0.5.1",
"react-addons-shallow-compare": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "^0.7.0",
"rimraf": "^2.5.4",
"shebang-loader": "0.0.1",
"storybook-readme": "^1.3.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "1.16.0"
}
}