-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "bonfire-api",
"version": "1.2.2",
"description": "API responsavel por gerir dados dos sistemas do Bonfire",
"main": "src/server.ts",
"scripts": {
"control-access": "ts-node -r tsconfig-paths/register src/utils/functions/controlAccess.ts",
"start:dev": "npx ts-node -r tsconfig-paths/register src/server.ts",
"start": "node dist/server.js",
"build": "tsc && tsc-alias",
"dev": "npx nodemon"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/thebonfiretech/bonfire-api.git"
},
"author": "https://github.com/odutradev",
"license": "ISC",
"bugs": {
"url": "https://github.com/thebonfiretech/bonfire-api/issues"
},
"homepage": "https://github.com/thebonfiretech/bonfire-api#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/chalk": "^0.4.31",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"bcrypt": "^5.1.1",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.3",
"tsconfig-paths": "^4.2.0"
}
}