Initialized from 'NodeJS Express' project template
Template repository: https://gitlab.com/gitlab-org/project-templates/express Commit SHA: 7494db9e8bca9bc0f514cac747389b0688351b12
parents
.gitignore
0 → 100644
.gitpod.yml
0 → 100644
.node-version
0 → 100644
Dockerfile
0 → 100644
README.md
0 → 100644
app.js
0 → 100644
bin/www
0 → 100755
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | |||
| "name": "demo", | |||
| "version": "0.0.0", | |||
| "private": true, | |||
| "scripts": { | |||
| "start": "node ./bin/www", | |||
| "test": "mocha" | |||
| }, | |||
| "dependencies": { | |||
| "cookie-parser": "~1.4.3", | |||
| "debug": "~2.6.9", | |||
| "express": "~4.16.0", | |||
| "http-errors": "~1.6.2", | |||
| "morgan": "~1.9.0", | |||
| "pug": "2.0.0-beta11" | |||
| }, | |||
| "devDependencies": { | |||
| "mocha": "^5.1.1", | |||
| "supertest": "^3.0.0" | |||
| } | |||
| } |
public/stylesheets/style.css
0 → 100644
routes/index.js
0 → 100644
routes/users.js
0 → 100644
test/test.js
0 → 100644
views/error.pug
0 → 100644
views/index.pug
0 → 100644
views/layout.pug
0 → 100644
Please register or sign in to comment