-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for ABFLN³",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "npx nodemon --exec ts-node --files src/server.ts",
"typeorm": "npx ts-node ./node_modules/typeorm/cli.js",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nataliafonseca/abfln.git"
},
"keywords": [
"healthcare"
],
"author": "ABFLN³ Development Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/nataliafonseca/abfln/issues"
},
"homepage": "https://github.com/nataliafonseca/abfln#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/nodemailer": "^6.4.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/cron": "^1.7.2",
"@types/date-fns": "^2.6.0",
"@types/moment": "^2.13.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cron": "^1.8.2",
"date-fns": "^2.20.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"nodemailer": "^6.6.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31",
"uuid": "^8.3.2",
"yup": "^0.32.9"
}
}