-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "clean-architecture",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start:dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"start": "node build/src/main.js",
"lint": "npx prettier --check ./src",
"lint:fix": "npx prettier --write ./src",
"cron:run": "node build/src/cron/$npm_config_name.cron",
"seed:run": "node build/src/database/seeds/$npm_config_name.seed",
"test": "npx jest"
},
"keywords": [
"clean-architecture",
"nodejs",
"typescript",
"express",
"javascript"
],
"author": "ayocodingit",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/i18n": "^0.13.6",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.11",
"@types/node": "^18.11.18",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"prettier": "2.8.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.310.0",
"axios": "^1.7.4",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"i18n": "^0.15.1",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.3.0",
"mime-types": "^2.1.35",
"mongoose": "^6.8.3",
"multer": "^1.4.5-lts.1",
"redis": "^4.5.1",
"slugify": "^1.6.6",
"winston": "^3.8.2"
}
}