-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.73 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cview",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "PORT=4000 NODE_ENV=production node ./bin/www",
"start-dev": "PORT=4000 NODE_ENV=development node ./bin/www",
"watch-js": "watchify public/javascripts/client.jsx -o public/javascripts/bundle.js -v -d",
"postinstall": "NODE_ENV=production browserify public/javascripts/client.jsx | uglifyjs -cm > public/javascripts/bundle.min.js",
"test": "jest"
},
"dependencies": {
"body-parser": "~1.10.2",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.3",
"cookie-parser": "~1.3.3",
"debug": "~2.1.1",
"envify": "^3.4.0",
"express": "~4.11.1",
"google-maps": "^2.1.1",
"jade": "~1.9.1",
"morgan": "~1.5.1",
"reactify": "^1.1.0",
"reflux": "^0.2.7",
"serve-favicon": "~2.2.0",
"uglify-js": "^2.4.17"
},
"description": "CBASS Viewer",
"main": "app.js",
"devDependencies": {
"jest-cli": "^0.4.0",
"watchify": "^2.6.0"
},
"keywords": [
"CBASS",
"Camera-Based",
"Assessment",
"Survey",
"System",
"marine",
"science",
"oceanography",
"video"
],
"browserify": {
"transform": [
"reactify",
"browserify-shim",
"envify"
]
},
"browserify-shim": {
"jquery": "global:$",
"bootstrap": {
"depends": [
"jquery"
]
},
"lodash": "global:_",
"react": "global:React"
},
"jest": {
"rootDir": "./public/javascripts"
},
"author": "Michael Lindemuth & Alex Silverman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/USF-COT/CVIEW.git"
},
"bugs": {
"url": "https://github.com/USF-COT/CVIEW/issues"
},
"homepage": "https://github.com/USF-COT/CVIEW"
}