-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 4 additions, 0 deletions.gitignore
- package.json 25 additions, 0 deletionspackage.json
- src/entities/DiscordUser.ts 19 additions, 0 deletionssrc/entities/DiscordUser.ts
- src/index.ts 31 additions, 0 deletionssrc/index.ts
- src/migrations/Migration20210826015129.ts 10 additions, 0 deletionssrc/migrations/Migration20210826015129.ts
- src/mikro-orm.config.ts 15 additions, 0 deletionssrc/mikro-orm.config.ts
- src/pages/index.html 18 additions, 0 deletionssrc/pages/index.html
- src/pages/public/main.css 54 additions, 0 deletionssrc/pages/public/main.css
- src/pages/public/main.js 56 additions, 0 deletionssrc/pages/public/main.js
- src/rest.http 6 additions, 0 deletionssrc/rest.http
- tsconfig.json 28 additions, 0 deletionstsconfig.json
- yarn.lock 0 additions, 0 deletionsyarn.lock
.gitignore
0 → 100644
package.json
0 → 100644
{ | |||
"name": "discord-verification-feide", | |||
"version": "1.0.0", | |||
"main": "dist/index.js", | |||
"scripts": { | |||
"watch": "npx tsc -w", | |||
"dev": "nodemon dist/index.js", | |||
"build": "npx tsc" | |||
}, | |||
"license": "MIT", | |||
"devDependencies": { | |||
"@types/express": "^4.17.13", | |||
"@types/node": "^16.7.1", | |||
"nodemon": "^2.0.12", | |||
"typescript": "^4.3.5" | |||
}, | |||
"dependencies": { | |||
"@mikro-orm/cli": "^4.5.9", | |||
"@mikro-orm/core": "^4.5.9", | |||
"@mikro-orm/migrations": "^4.5.9", | |||
"@mikro-orm/postgresql": "^4.5.9", | |||
"express": "^4.17.1", | |||
"pg": "^8.7.1" | |||
} | |||
} |
src/entities/DiscordUser.ts
0 → 100644
src/index.ts
0 → 100644
src/migrations/Migration20210826015129.ts
0 → 100644
src/mikro-orm.config.ts
0 → 100644
src/pages/index.html
0 → 100644
src/pages/public/main.css
0 → 100644
src/pages/public/main.js
0 → 100644
src/rest.http
0 → 100644
tsconfig.json
0 → 100644
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment