-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.3 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.3 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
{
"name": "open-budget-abq",
"version": "1.0.0",
"description": "This project will display the City of Albuquerque's annual budget in a user friendly web application, allowing citizens to better understand how their tax dollars are being spent and how city services are prioritized.",
"main": "index.html",
"scripts": {
"test-build-js": "browserify app/app.jsx -o dist/bundle.js -t babelify --presets es2015 react",
"build-js": "browserify -t reactify app/app.jsx -o dist/bundle.js",
"watch-js": "nodemon --watch app -e js,jsx -x \"npm run build-js\"",
"build-css": "node-sass --include-path app/style app/style/main.scss dist/style/main.css",
"watch-css": "nodemon --watch app --ext scss -x \"npm run build-css\"",
"build-all": "npm run build-css && npm run build-js",
"watch-all": "nodemon --watch app -e js,jsx,scss -x \"npm run build-all\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforabq/Open-Budget-ABQ.git"
},
"author": "CodeForABQ",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforabq/Open-Budget-ABQ/issues"
},
"homepage": "https://github.com/codeforabq/Open-Budget-ABQ#readme",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"breakpoint-sass": "^2.6.1",
"browserify": "^11.2.0",
"browserify-shim": "^3.8.10",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.0.0",
"gulp-ignore": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-rimraf": "^0.2.0",
"gulp-sass": "^2.1.1",
"gulp-uglify": "^1.5.1",
"lodash": "^3.10.1",
"merge-stream": "^1.0.0",
"node-sass": "^3.3.3",
"nodemon": "^1.7.1",
"react-tools": "^0.13.3",
"reactify": "^1.1.1",
"susy": "^2.2.6",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"d3": "^3.5.6",
"jquery-deferred": "^0.3.0",
"react": "^0.14.0",
"react-bootstrap": "^0.27.2",
"react-dom": "^0.14.0",
"react-router": "^2.0.0-rc4"
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"bootstrap": {
"exports": "bootstrap",
"depends": [
"jquery:jQuery"
]
}
}
}