forked from Enthusiasts/roxana-map-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 952 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 952 Bytes
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
{
"name": "roxana-map-react",
"version": "0.0.1",
"dependencies": {
"jquery": "^2.2.1",
"leaflet": "^0.7.7",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-leaflet": "^0.10.1"
},
"devDependencies": {
"bower": "^1.7.7",
"browserify": "^13.0.0",
"grunt": "^0.4.5",
"grunt-bower": "^0.21.0",
"grunt-cli": "^0.1.13",
"http-server": "^0.9.0",
"reactify": "^1.1.1",
"uglifyify": "^3.0.1"
},
"browserify": {
"transform": [
"reactify"
]
},
"scripts": {
"postinstall": "npm run setup-vendor",
"presetup-vendor": "bower install",
"setup-vendor": "grunt bower",
"start": "npm run build-dev",
"poststart": "http-server -a 127.0.0.1 -p 8100 -o",
"build-dev": "browserify -e src/app.js -o public/scripts/build/bundle.dev.js -d",
"build-min": "browserify -e public/scripts/build/bundle.dev.js -t uglifyify -o public/scripts/build/bundle.min.js"
}
}