forked from RyanCNP/Backend-SaneaSP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.31 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.31 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
{
"name": "backend",
"version": "2.0.9",
"description": "BackEnd do projeto SaneaSP",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./app.ts",
"start": "node dist/app.js",
"build": "tsc && npm run copy-public && npm run copy-templates",
"copy-public": "cp -r public dist/public",
"copy-templates": "mkdir -p dist/src/templates && cp -r src/templates/* dist/src/templates/",
"migration-create": "npx sequelize-cli migration:generate --name",
"migrate": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"migrate:undo:all": "npx sequelize-cli db:migrate:undo:all",
"seed-create": "npx sequelize-cli seed:generate --name",
"seed": "npx sequelize-cli db:seed:all",
"seed:undo": "npx sequelize-cli db:seed:undo",
"seed:undo:all": "npx sequelize-cli db:seed:undo:all"
},
"dependencies": {
"@logtail/winston": "^0.5.6",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"exceljs": "^4.4.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"multer": "^2.0.2",
"nodemailer": "^7.0.6",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"sequelize-typescript": "^2.1.6",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"stripe": "^19.3.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "4.3",
"winston": "^3.18.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^2.0.0",
"@types/node": "^22.19.1",
"@types/nodemailer": "^7.0.1",
"@types/pg": "^8.15.4",
"@types/sequelize": "^4.28.20",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"sequelize-cli": "^6.6.2",
"swagger-autogen": "^2.23.7",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyanCarloNP/Backend-SaneaSP.git"
},
"keywords": [
"Backend",
"SaneaSP"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RyanCarloNP/Backend-SaneaSP/issues"
},
"homepage": "https://github.com/RyanCarloNP/Backend-SaneaSP#readme"
}