This repository has been archived by the owner on Dec 16, 2020. It is now read-only.
forked from corona-school/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "corona-school-backend",
"version": "0.3.0",
"description": "The Corona School Backend",
"engines": {
"node": "13.x"
},
"main": "index.js",
"scripts": {
"start": "echo Please be more specific what to start for now...",
"build": "tsc",
"build:clean": "rm -rf built && tsc",
"test": "mocha -r ts-node/register './tests/**/*.test.ts' --exit",
"test:coverage": "nyc npm run test",
"jobs": "node ./built/jobs/index.js",
"jobs:dev": "node -r dotenv/config ./built/jobs/index.js",
"jobs:debug": "npm run build && node --inspect=0 ./built/jobs/index.js",
"web": "node ./built/web/index.js",
"web:dev": "node -r dotenv/config ./built/web/index.js",
"web:debug": "npm run build && node --inspect=0 ./built/web/index.js",
"web:docs": "apidoc -i web/controllers -i common -o web/public/docs",
"typeorm": "npm run build:clean && npx typeorm",
"db:migration:create": "npm run typeorm -- migration:create -n",
"db:migration:generate": "npm run typeorm -- migration:generate -n",
"db:migration:run": "npm run typeorm -- migration:run",
"db:migration:revert": "npm run typeorm -- migration:revert",
"db:migration:show": "npm run typeorm -- migration:show",
"linter": "eslint . --ext .ts"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.4",
"@types/html-pdf": "^2.2.0",
"@types/node": "^12.12.31",
"@types/node-mailjet": "^3.3.3",
"@types/papaparse": "^5.0.3",
"@types/react-select": "^3.0.12",
"@types/textversionjs": "^1.1.0",
"address-rfc2821": "^1.1.3",
"async-mutex": "^0.2.2",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"corona-school-matching": "^1.0.0",
"cron": "^1.8.2",
"csv-writer": "^1.6.0",
"date-holidays": "^1.5.3",
"dotenv": "^8.2.0",
"ejs": "^2.5.6",
"escape-html": "^1.0.3",
"esm": "^3.2.25",
"express": "^4.15.2",
"express-favicon": "^2.0.1",
"googleapis": "^59.0.0",
"helmet": "^3.22.0",
"hpp": "^0.2.3",
"html-pdf": "^2.2.0",
"lodash": "^4.17.19",
"log4js": "latest",
"moment": "^2.24.0",
"moment-timezone": "^0.5.31",
"node-mailjet": "^3.3.1",
"nodemailer": "^6.4.5",
"papaparse": "^5.2.0",
"parse-domain": "^3.0.2",
"paseto.js": "^0.1.6",
"pg": "^8.3.0",
"react-select": "^3.1.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.5",
"textversionjs": "^1.1.3",
"typeorm": "^0.2.24",
"typescript": "^3.8.3",
"uuid": "^7.0.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/lodash": "^4.14.155",
"@types/mocha": "^7.0.2",
"@types/rewire": "^2.5.28",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"apidoc": "^0.22.1",
"chai": "^4.2.0",
"cors": "^2.8.5",
"eslint": "^7.2.0",
"libsodium-wrappers": "^0.7.6",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"request": "^2.81.0",
"rewire": "^5.0.0",
"sinon": "^9.0.2",
"tape": "^4.7.0",
"ts-node": "^8.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/geroembser/corona-school"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}