forked from vikingeducation/assignment_mad_lib_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"name": "assignment_mad_lib_api",
"version": "1.0.0",
"description": "Serving up the madness with a Mad Lib API!",
"main": "index.js",
"scripts": {
"test": "npm run whichnodemon && nodemon --exec npm run jasmine || npm run jasmine",
"start": "which nodemon > /dev/null && nodemon app.js || node app.js",
"whichnodemon": "which nodemon > /dev/null",
"jasmine": "./node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chuckinabox/assignment_mad_lib_api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chuckinabox/assignment_mad_lib_api/issues"
},
"homepage": "https://github.com/chuckinabox/assignment_mad_lib_api#readme",
"dependencies": {
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"cookie-session": "^2.0.0-beta.1",
"express": "^4.15.2",
"express-flash-messages": "^0.1.1",
"express-handlebars": "^3.0.0",
"express-method-override-get-post-support": "0.0.7",
"jasmine": "^2.6.0",
"md5": "^2.2.1",
"method-override": "^2.3.9",
"mongoose": "^4.9.6",
"mongoose-unique-validator": "^1.0.5",
"mongooseeder": "^2.0.5",
"morgan": "^1.8.1",
"morgan-toolkit": "^1.0.2",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"qs": "^6.5.1",
"request": "^2.83.0",
"sentencer": "^0.1.5",
"uuid": "^3.0.1",
"voca": "^1.3.0",
"wordpos": "^1.1.5"
}
}