-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.64 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.64 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
{
"name": "api-starter",
"version": "1.0.0",
"description": "API starter for new projects",
"homepage": "https://github.com/danymo94/API-STARTER#readme",
"bugs": {
"url": "https://github.com/danymo94/API-STARTER/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danymo94/API-STARTER.git"
},
"license": "ISC",
"author": "David Luis Naimo",
"type": "commonjs",
"main": "build/index.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"start": "tsc && node build/index.js",
"test": "cross-env NODE_ENV=test mocha --exit --recursive --require ts-node/register --timeout=5000 tests/**/*.ts",
"test:coverage": "cross-env NODE_ENV=test nyc --require ts-node/register --reporter lcov --reporter text mocha --exit --recursive --timeout=5000 tests/**/*.ts",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^8.1.4",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"firebase-admin": "^13.0.2",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mailgun-js": "^0.6.7",
"morgan": "^1.10.0",
"ts-node-dev": "^2.0.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"eslint-plugin-prettier": "^5.2.3",
"mocha": "^11.1.0",
"nodemon": "^3.1.9",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}