-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.95 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.95 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
{
"name": "food-access-api",
"version": "1.0.0",
"description": "API for RDH Health Food Store Database",
"main": "app.coffee",
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register",
"postinstall": "gulp build && browserify src/js/app.js -o dist/bundle.js -t [ babelify --presets [ react es2015] ]",
"start": "coffee app.coffee --nodejs --optimize_for_size --max_old_space_size=460 --gc_interval=100",
"watch": "watchify src/js/app.js -o dist/bundle.js -t [ babelify --presets [ react es2015] ] -v",
"compile": "browserify src/js/app.js -o dist/bundle.js -t [ babelify --presets [ react es2015] ]"
},
"author": "CodeForRVA",
"license": "ISC",
"dependencies": {
"apicache": "0.0.14",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.15.1",
"browserify": "13.0.1",
"coffee-reactify": "^5.0.0",
"coffee-script": "1.10.0",
"coffeeify": "2.0.1",
"connect-flash": "0.1.1",
"cookie-parser": "1.4.3",
"cors": "2.7.1",
"csurf": "1.9.0",
"dotenv": "2.0.0",
"express": "4.13.4",
"express-session": "1.13.0",
"gulp": "3.9.1",
"gulp-browserify": "0.5.1",
"gulp-rename": "1.2.2",
"gulp-sass": "2.3.1",
"gulp-sourcemaps": "1.6.0",
"gulp-util": "3.0.7",
"helmet": "2.1.0",
"jase": "1.2.0",
"jquery": "2.2.4",
"lodash": "^4.13.1",
"mapbox": "1.0.0-beta",
"mongoose": "4.4.19",
"morgan": "1.7.0",
"node-uuid": "^1.4.7",
"normalize.css": "4.1.1",
"passport": "0.3.2",
"passport-local": "1.0.0",
"pug": "2.0.0-alpha8",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"reactify": "^1.1.1",
"request": "2.72.0",
"sparkpost": "^1.3.5",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"watchify": "^3.7.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"supertest": "1.2.0"
}
}