forked from synergistic-management-solutions-inc/Foodujour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
{
"name": "foodujour",
"version": "1.0.0",
"description": "A food logging app",
"main": "app.js",
"engines": {
"node": "4.2.0"
},
"dependencies": {
"angular": "^1.4.7",
"angular-animate": "^1.4.7",
"angular-cookies": "^1.4.7",
"angular-materialize": "git+https://github.com/Foodujour/angular-materialize.git",
"angular-mocks": "^1.4.7",
"angular-resource": "^1.4.7",
"angular-sanitize": "^1.4.7",
"angular-touch": "^1.4.7",
"angular-ui-router": "^0.2.15",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^2.10.2",
"body-parser": "^1.14.1",
"browserify": "^11.2.0",
"browserify-middleware": "^7.0.0",
"browserify-ngannotate": "^1.0.1",
"connect-flash": "^0.1.1",
"connect-session-knex": "^1.0.16",
"cookie-parser": "^1.4.0",
"docco": "^0.7.0",
"dotenv": "^1.2.0",
"express": "^4.13.1",
"express-session": "^1.12.0",
"jquery": "^2.1.4",
"knex": "^0.8.6",
"materialize-css": "^0.97.1",
"moment": "^2.10.6",
"morgan": "^1.6.1",
"ng-imgur": "git+https://github.com/dianafaye17/ngImgur.git",
"passport": "^0.3.0",
"passport-facebook": "^2.0.0",
"passport-google-oauth": "^0.2.0",
"passport-google-oauth2": "^0.1.6",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.1.2",
"pg": "^4.4.3",
"pm2": "^0.15.7"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^2.3.3",
"supertest": "^1.1.0",
"supertest-as-promised": "^2.0.2"
},
"scripts": {
"start": "node ./server/app.js",
"docco": "./node_modules/.bin/docco -o client/docs/ server/**/*.js test/**/*.js",
"migrate:latest": "./node_modules/.bin/knex migrate:latest",
"seed": "./node_modules/.bin/knex seed:run",
"preinstall": "shopt -s globstar 2>/dev/null | exit 0",
"postinstall": "npm run migrate:latest && npm run docco",
"dev": "./node_modules/.bin/pm2-dev start app.json",
"test": "./test/run.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Foodujour/Foodujour.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Foodujour/Foodujour/issues"
},
"homepage": "https://github.com/Foodujour/Foodujour"
}