forked from DanKottke/midas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.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
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
{
"name": "midas",
"private": true,
"version": "0.3.0",
"description": "Innovation platform providing collaboration and crowdsourcing tools",
"dependencies": {
"async": "^0.2.9",
"autolinker": "^0.15.2",
"backbone": "^1.1.2",
"bcrypt": "0.7.7",
"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",
"chai": "2.1.2",
"connect-pg-simple": "^2.2.1",
"ejs": "0.8.5",
"email-templates": "~0.1.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",
"lodash": "~2.4.1",
"marked": "^0.3.3",
"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",
"uglifyify": "^3.0.1",
"underscore": "^1.8.2",
"validator": "3.4.0",
"winston": "^0.9.0"
},
"devDependencies": {
"casper-chai": "^0.2.1",
"mocha-casperjs": "^0.5.3",
"pg": "~3.6.0",
"phantomjs": "^1.9.16"
},
"config": {
"grunt": "./node_modules/sails/node_modules/.bin/grunt",
"dir": "."
},
"scripts": {
"test:api": "mocha test/test.upstart.js --recursive test/api",
"test:browser": "npm run build && node test/browser/upstart.js",
"test": "npm run test:api && npm run test:browser",
"build": "$npm_package_config_grunt build",
"start": "node app.js",
"migrate": "./tools/postgres/init.sh",
"init": "mocha test/test.upstart.js --development --recursive test/init",
"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/* ."
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/18F/midas.git"
},
"bugs": "https://github.com/18F/midas/issues",
"license": "MIT"
}