-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.46 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
64
65
66
67
68
69
70
{
"name": "bank-me-qfexso",
"version": "1.0.0",
"repository": "http://[email protected]/linagora-1/bank-me-qfexso",
"author": "TuanCR <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist/cjs && tsc --project ./tsconfig.json --outdir ./dist/cjs",
"typeorm": "npm run build && npx typeorm -d dist/cjs/infra/db-typeorm/datasource.js",
"migration:generate": "npm run typeorm -- migration:generate database-typeorm/migrations/$0",
"migration:run": "npm run build && npm run typeorm -- migration:run",
"service:start": "NODE_PATH=dist/cjs/ node dist/cjs/infra/app.js",
"express-rest:dev": "concurrently \"tsc --project ./tsconfig.json --outdir dist/cjs --watch\" \"NODE_PATH=dist/cjs/ nodemon -q dist/cjs/infra/app.js\"",
"service:dev": "concurrently \"tsc --project ./tsconfig.json --outdir dist/cjs --watch\" \"NODE_PATH=dist/cjs/ nodemon -q dist/cjs/infra/app.js\""
},
"dependencies": {
"@aws-sdk/client-s3": "^3.563.0",
"@types/ramda": "^0.30.0",
"@types/reflect-metadata": "^0.1.0",
"amqplib": "^0.10.4",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"env-var": "^7.4.1",
"express": "^4.18.1",
"express-fileupload": "^1.5.0",
"express-validator": "^6.14.2",
"fp-ts": "^2.16.5",
"helmet": "^6.0.0",
"http-status": "^1.5.2",
"mongodb": "^6.6.2",
"multer": "^1.4.5-lts.1",
"nanoevents": "7.0.1",
"passport": "^0.6.0",
"passport-custom": "^1.1.1",
"passport-http-bearer": "^1.0.1",
"passport-http-custom-bearer": "^1.0.15",
"pg": "^8.8.0",
"ramda": "^0.30.0",
"ts-pattern": "^5.1.1",
"typeorm": "0.3.7",
"uuid": "^8.3.2",
"winston": "^3.8.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1",
"@types/jest": "^29.0.0",
"@types/multer": "^1",
"@types/node": "^18.7.14",
"@types/passport": "^1.0.10",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"concurrently": "^7.3.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^2.0.19",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.0",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]"
}