-
- Downloads
You need to sign in or sign up before continuing.
Initial (unauthed) version.
Showing
- .dockerignore 1 addition, 0 deletions.dockerignore
- .eslintignore 1 addition, 0 deletions.eslintignore
- .eslintrc.js 15 additions, 0 deletions.eslintrc.js
- .gitignore 1 addition, 0 deletions.gitignore
- .gitmodules 3 additions, 0 deletions.gitmodules
- .jshintrc 20 additions, 0 deletions.jshintrc
- Dockerfile 14 additions, 0 deletionsDockerfile
- deps/RichFilemanager 1 addition, 0 deletionsdeps/RichFilemanager
- index.js 33 additions, 0 deletionsindex.js
- package-lock.json 2001 additions, 0 deletionspackage-lock.json
- package.json 35 additions, 0 deletionspackage.json
- public/config/filemanager.config.json 205 additions, 0 deletionspublic/config/filemanager.config.json
- public/config/filemanager.init.js 4 additions, 0 deletionspublic/config/filemanager.init.js
- scripts/run-server.sh 11 additions, 0 deletionsscripts/run-server.sh
.dockerignore
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitmodules
0 → 100644
.jshintrc
0 → 100644
Dockerfile
0 → 100644
index.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "dtu-enote-filemanager", | |||
"version": "1.0.0", | |||
"description": "Filemanager for DTU eNote", | |||
"main": "index.js", | |||
"scripts": { | |||
"test": "echo \"Error: no test specified\" && exit 1", | |||
"serve": "NODE_ENV=production node ./index.js", | |||
"lint": "eslint *.js", | |||
"pretty": "prettier --single-quote --write index.js" | |||
}, | |||
"repository": { | |||
"type": "git", | |||
"url": "git@lab.compute.dtu.dk:enote/filemanager.git" | |||
}, | |||
"keywords": [ | |||
"file", | |||
"filemanager", | |||
"enote" | |||
], | |||
"author": "Iain J. Bryson", | |||
"license": "ISC", | |||
"dependencies": { | |||
"eslint-config-airbnb": "^17.1.0", | |||
"express": "^4.16.4", | |||
"rich-filemanager-node": "^0.1.5" | |||
}, | |||
"devDependencies": { | |||
"eslint": "^5.15.3", | |||
"eslint-plugin-import": "^2.16.0", | |||
"eslint-plugin-jsx-a11y": "^6.2.1", | |||
"eslint-plugin-react": "^7.12.4", | |||
"prettier": "^1.16.4" | |||
} | |||
} |
public/config/filemanager.config.json
0 → 100644
public/config/filemanager.init.js
0 → 100644
scripts/run-server.sh
0 → 100755
Please register or sign in to comment