forked from DanKottke/midas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.38 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "openopps-platform",
"private": true,
"version": "0.8.0",
"description": "Innovation platform providing collaboration and crowdsourcing tools",
"dependencies": {
"async": "^0.2.9",
"autolinker": "^0.15.2",
"aws-sdk": "^2.1.26",
"backbone": "^1.1.2",
"bcryptjs": "^2.3.0",
"blueimp-file-upload": "9.5.7",
"bootstrap": "^3.3.4",
"bootstrap-datetimepicker": "https://github.com/Eonasdan/bootstrap-datetimepicker/archive/v2.1.30.tar.gz",
"browserify": "^9.0.3",
"cfenv": "^1.0.2",
"chai": "2.1.2",
"connect-pg-simple": "^3.0.1",
"connect-redis": "1.4.5",
"d3": "^3.5.5",
"ejs": "0.8.5",
"git-rev": "0.2.x",
"gm": "~1.14.2",
"grunt": "0.4.5",
"grunt-browserify": "^3.5.1",
"grunt-contrib-cssmin": "0.11.0",
"grunt-jsonlint": "1.0.4",
"i18next": "~1.7.4",
"i18next-client": "^1.8.2",
"icalendar": "0.6.5",
"jquery.atwho": "ichord/At.js#v0.4.7",
"jquery.caret": "ichord/Caret.js#v0.0.7",
"json2csv": "2.2.1",
"leaflet": "^1.0.0-beta.1",
"lodash": "~2.4.1",
"marked": "^0.3.4",
"mocha": "2.2.1",
"moment": "2.5.0",
"newrelic": "1.16.1",
"node-uuid": "1.4.x",
"nodemailer": "0.6.x",
"optimist": "0.4.0",
"passport": "0.2.x",
"passport-http-bearer": "^1.0.1",
"passport-linkedin": "0.1.x",
"passport-local": "1.0.x",
"passport-myusa": "1.0.x",
"passport-oauth": "1.0.x",
"request": "2.x",
"sails": "0.10.5",
"sails-build-dictionary": "0.10.1",
"sails-disk": "~0.10.0",
"sails-postgresql": "18F/sails-postgresql#softdelete",
"select2": "select2/select2#3.5.2",
"string": "~1.8.1",
"stringify": "^3.1.0",
"timepicker": "jonthornton/jquery-timepicker#1.2.15",
"topojson": "^1.6.19",
"uglifyify": "^3.0.1",
"underscore": "^1.8.2",
"validator": "3.4.0",
"bourbon": "^4.2.6",
"bourbon-neat": "^1.7.2",
"grunt-sass": "^1.1.0"
},
"devDependencies": {
"casper-chai": "^0.2.1",
"mocha-casperjs": "^0.5.3",
"nodemon": "^1.3.7",
"pg": "~3.6.0",
"phantomjs": "^1.9.16"
},
"config": {
"grunt": "./node_modules/sails/node_modules/.bin/grunt",
"dir": "."
},
"scripts": {
"preinstall": "if [ \"$THEME\" ]; then git clone $THEME _theme; npm run import --openopps-platform:dir=_theme; fi",
"install": "npm run build",
"test:api": "mocha test/test.upstart.js --recursive test/api",
"test:browser": "npm run build && node test/browser/upstart.js",
"test:unit": "mocha test/test.upstart.js --recursive test/unit",
"test": "npm run test:unit && npm run test:api && npm run test:browser",
"build": "$npm_package_config_grunt build",
"start": "node app.js",
"migrate": "./tools/postgres/init.sh",
"init": "node test/init/init/init.test.js",
"demo": "mocha test/test.upstart.js --development --recursive test/demo",
"import": "cp -v $npm_package_config_dir/exclude.txt exclude.txt | true && rsync -av --exclude-from=exclude.txt $npm_package_config_dir/* .",
"watch": "source .env | true && nodemon --watch assets --watch api --watch config --watch views -i assets/build -e js,html,css"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/18F/openopps-platform.git"
},
"bugs": "https://github.com/18F/openopps-platform/issues",
"license": "MIT",
"engines": {
"node": "0.10.x",
"npm": "2.1.x"
}
}