-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "test",
"title": "test",
"description": "Test repo for exploring data flow",
"version": "0.0.1",
"main": "./client/index.js",
"homepage": "http://www.hackoregon.org",
"repository": {
"type": "git",
"url": "https://github.com/Jobs-Economy/test.git"
},
"dependencies": {
"d3": "3.5.6",
"jquery": "2.1.4",
"leaflet": "1.0.0-beta.1",
"lodash": "3.10.0",
"moment": "2.10.3",
"rc-slider": "1.4.5",
"react": "0.14.0",
"react-dom": "0.14.0",
"react-router": "1.0.0-rc3",
"classnames": "2.1.5",
"react-stickydiv": "3.4.17"
},
"devDependencies": {
"babelify": "6.1.3",
"backbone": "1.2.1",
"beefy": "2.1.5",
"bootstrap": "3.3.5",
"browserify": "11.0.1",
"exorcist": "0.4.0",
"gulp": "3.9.0",
"gulp-sourcemaps": "1.5.2",
"handlebars": "3.0.3",
"hbsfy": "2.2.1",
"imagemin": "3.2.2",
"minifyify": "7.1.0",
"node-sass": "3.2.0",
"nodemon": "1.4.0",
"nvd3": "1.8.1",
"watchify": "3.2.3"
},
"scripts": {
"build": "browserify ./src/index.js -d -p [minifyify --no-map] > public/js/oregon_minwage.js",
"watch": "watchify ./src/index.js -o './node_modules/.bin/exorcist public/js/oregon_minwage.js.map > public/js/oregon_minwage.js' -d -v",
"build-css": "node-sass ./public/scss/main.scss ./public/css/main.css",
"watch-css": "nodemon -e scss -x 'npm run build-css'",
"serve": "beefy ./src/index.js 3000 --index=./src/index.html --live",
"image-min": "imagemin ./src/images/team/ ./public/images/team/ -o 7"
},
"browserify": {
"transform": [
"babelify"
]
},
"directories": {},
"author": {
"name": "Team Minimum Wage-Hack Oregon",
"url": "http://www.hackoregon.org/"
},
"license": "MIT"
}