Init commit
parents
Showing
.gitignore
0 → 100644
certs/server.crt
0 → 100644
certs/server.csr
0 → 100644
certs/server.key
0 → 100644
gulpfile.js
0 → 100644
i18n/de.json
0 → 100644
i18n/en.json
0 → 100644
i18n/es.json
0 → 100644
i18n/fr.json
0 → 100644
i18n/it.json
0 → 100644
1.66 KB
images/favicons/favicon.svg
0 → 100644
images/mathjax/example_3.svg
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "backend", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"repository": "git@git.thm.de:arsnova/arsnova.click-v2.git", | ||
"description": "Version 2 of arsnova.click (Backend)", | ||
"config": { | ||
"portInternal": "3000", | ||
"portExternal": "3000", | ||
"routePrefix": "", | ||
"rewriteAssetCacheUrl": "", | ||
"themePreviewHost": "http://localhost:4200" | ||
}, | ||
"scripts": { | ||
"prod": "gulp", | ||
"prestart": "npm run prod", | ||
"start": "node dist/index.js", | ||
"pretest": "gulp test", | ||
"test": "nyc -c mocha --opts src/tests/mocha.opts" | ||
}, | ||
"dependencies": { | ||
"body-parser": "^1.18.2", | ||
"cas": "0.0.3", | ||
"connect-busboy": "0.0.2", | ||
"cookie-parser": "~1.4.3", | ||
"cors": "^2.8.4", | ||
"crypto-js": "^3.1.9-1", | ||
"debug": "^3.1.0", | ||
"excel4node": "^1.3.0", | ||
"express": "^4.16.2", | ||
"express-ws": "^3.0.0", | ||
"file-type": "^7.2.0", | ||
"i18n": "^0.8.3", | ||
"lowdb": "^1.0.0", | ||
"mathjax-node": "^1.2.1", | ||
"messageformat": "^1.0.2", | ||
"mime": "^2.0.3", | ||
"mime-types": "^2.1.17", | ||
"morgan": "^1.9.0", | ||
"node-sass-middleware": "0.11.0", | ||
"phantomjs-prebuilt": "^2.1.16", | ||
"request": "^2.83.0", | ||
"serve-favicon": "~2.4.5", | ||
"slimerjs": "^0.10.3" | ||
}, | ||
"devDependencies": { | ||
"@types/body-parser": "1.16.8", | ||
"@types/chai": "^4.0.4", | ||
"@types/chai-http": "3.0.3", | ||
"@types/cors": "^2.8.3", | ||
"@types/debug": "0.0.30", | ||
"@types/express": "^4.0.39", | ||
"@types/mocha": "^2.2.44", | ||
"@types/morgan": "^1.7.35", | ||
"@types/node": "^8.0.52", | ||
"@types/websocket": "0.0.34", | ||
"@types/ws": "^3.2.0", | ||
"chai": "^4.1.2", | ||
"chai-http": "^3.0.0", | ||
"del": "^3.0.0", | ||
"gulp": "github:gulpjs/gulp#4.0", | ||
"gulp-clean": "^0.3.2", | ||
"gulp-typescript": "^3.2.3", | ||
"mocha": "^4.0.1", | ||
"mocha-typescript": "^1.1.12", | ||
"nyc": "^11.3.0", | ||
"source-map-support": "^0.5.0", | ||
"ts-node": "^3.3.0", | ||
"tslint": "^5.8.0", | ||
"typescript": "^2.6.1" | ||
} | ||
} |