-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.68 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
{
"name": "app-enchufevirtual",
"version": "1.0.0",
"description": "Radio Manager - Enchufe Virtual",
"main": "./app/index.ts",
"scripts": {
"tsc": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node ./app/index.ts",
"build": "tsc",
"migrations:generate": "sequelize-cli migration:generate --name",
"migrations:run": "sequelize-cli db:migrate"
},
"keywords": [
"TYPESCRIPT",
"NODE",
"EXPRESS"
],
"author": "chendodev",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^10.0.1",
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"file-type": "^18.2.1",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"mariadb": "^3.1.1",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.3.1",
"nodemailer": "^6.9.1",
"sequelize": "^6.30.0",
"sequelize-cli": "^5.3.0",
"sharp": "^0.32.0",
"socket.io": "^4.6.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.7",
"@types/sequelize": "^4.28.14",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^3.0.1",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}