forked from eugesma/recetar-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.75 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.75 KB
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
{
"name": "prescription-validator-api",
"version": "1.0.0",
"description": "NodeJS + MongoDB API for Prescription Management",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eugesma/prescription-validator-api.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"start": "node dist/src/server.js",
"start:dev": "ts-node ./src/server.ts",
"start:agenda-ui": "ts-node ./src/agenda-ui.ts",
"start:agenda-ui:prod": "node dist/src/agenda-ui.js",
"dev": "nodemon",
"dev:agenda-ui": "nodemon --config nodemon.agenda.json",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:agenda-ui\"",
"start:all": "concurrently \"npm run start\" \"npm run start:agenda-ui:prod\"",
"lint": "eslint -c .eslintrc.js --ext .ts .",
"lint:fix": "eslint -c .eslintrc.js --ext .ts . --fix"
},
"dependencies": {
"accesscontrol": "^2.2.1",
"agenda": "^3.1.0",
"agendash": "^1.0.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"fast-csv": "^4.3.6",
"handlebars": "^4.7.8",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.30.1",
"mongodb": "^3.2.7",
"mongoose": "^5.6.9",
"morgan": "^1.9.1",
"needle": "^2.9.1",
"nodemailer": "^6.9.14",
"passport": "^0.4.1",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"rootpath": "^0.1.2",
"uuid": "^7.0.3",
"whatwg-url": "^11.0.0"
},
"devDependencies": {
"@types/agenda": "^2.0.9",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.8",
"@types/morgan": "^1.9.0",
"@types/needle": "^2.5.3",
"@types/node": "^13.13.52",
"@types/passport": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.29.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"nodemon": "^3.1.4",
"ts-node": "^8.10.2",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^3.9.10"
}
}