forked from sitcomlab/Ethics-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
51 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"directory": "public/lib" | ||
"directory": "public/bower_components" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
node_modules/* | ||
public/lib/* | ||
public/files/tmp/* | ||
!*.gitkeep/ | ||
|
||
public/bower_components/* | ||
public/files/temp/* | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "Ethics-App", | ||
"name": "ethics-app", | ||
"version": "0.0.1", | ||
"authors": [ | ||
"Nicholas Schiestel <[email protected]>", | ||
|
@@ -8,28 +8,20 @@ | |
"description": "Ethics-App for the Institute for Geoinformatics, Münster", | ||
"license": "MIT", | ||
"private": true, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"lib", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"jquery": "~2.1.3", | ||
"bootstrap": "v4.0.0-alpha.5", | ||
"moment": "~2.10.3", | ||
"underscore": "~1.8.3", | ||
"angular": "1.5.9", | ||
"angular-translate": "~2.6.1", | ||
"angular-route": "~1.3.15", | ||
"angular-filter": "~0.5.4", | ||
"ngDialog": "~0.4.0", | ||
"ngBootbox": "~0.0.5", | ||
"font-awesome": "~4.5.0", | ||
"flag-icon-css": "^2.0.0", | ||
"angular-bootstrap": "~1.3.3" | ||
"angular-momentjs": "^0.2.2", | ||
"angular-route": "^1.5.8", | ||
"angular-sanitize": "^1.5.8", | ||
"angular-translate": "^2.11.1", | ||
"bootstrap": "v4.0.0-alpha.5", | ||
"font-awesome": "^4.6.3", | ||
"jquery": "^3.1.0", | ||
"moment": "^2.14.1", | ||
"tether": "^1.3.7", | ||
"bootbox.js": "bootbox#^4.4.0", | ||
"ngBootbox": "^0.1.4", | ||
"flag-icon-css": "^2.0.0" | ||
}, | ||
"resolutions": { | ||
"angular": "1.5.9", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,40 @@ | ||
{ | ||
"name": "ethics-app", | ||
"version": "0.0.1", | ||
"private": true, | ||
"version": "1.0.0", | ||
"description": "Application for the approval of user-studies", | ||
"main": "server.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/sitcomlab/Ethics-app.git" | ||
}, | ||
"author": { | ||
"name": "Nicholas Schiestel", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/sitcomlab/Ethics-app/issues" | ||
}, | ||
"homepage": "https://github.com/sitcomlab/Ethics-app#readme", | ||
"engines": { | ||
"node": ">=6.9.1", | ||
"npm": ">=3.10.8" | ||
}, | ||
"dependencies": { | ||
"async": "^1.5.2", | ||
"body-parser": "~1.0.0", | ||
"bson": "^0.4.20", | ||
"commander": "^2.9.0", | ||
"cookie-parser": "~1.0.1", | ||
"debug": "^0.7.4", | ||
"express": "~4.2.0", | ||
"fs": "0.0.2", | ||
"i": "^0.3.5", | ||
"install": "^0.8.1", | ||
"jquery": "^2.1.4", | ||
"jsdoc": "^3.3.3", | ||
"jsonwebtoken": "^5.7.0", | ||
"moment": "^2.10.6", | ||
"mongoose": "3.8.0", | ||
"morgan": "~1.0.0", | ||
"mustache": "^2.2.1", | ||
"nodemailer": "^1.11.0", | ||
"npm": "^3.9.2", | ||
"pdfkit": "^0.7.2", | ||
"phantom-html-to-pdf": "^0.4.1", | ||
"underscore": "^1.6.0", | ||
"validator": "^4.5.0" | ||
"async": "^2.0.1", | ||
"body-parser": "^1.15.2", | ||
"bower": "^1.8.0", | ||
"colors": "^1.1.2", | ||
"cookie-parser": "^1.4.3", | ||
"express": "^4.14.0", | ||
"moment": "^2.14.1", | ||
"nodemailer": "^2.7.0", | ||
"pg": "^6.1.0", | ||
"underscore": "^1.8.3", | ||
"uuid": "^3.0.1" | ||
}, | ||
"devDependencies": {} | ||
"scripts": { | ||
"start": "node server.js", | ||
"postinstall": "bower install" | ||
} | ||
} |