-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.52 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
{
"name": "nodejs-building-blocks",
"version": "1.0.0",
"description": "some building blocks for building business oriented systems using nodejs",
"main": "index.ts",
"type": "module",
"scripts": {
"build": "(rm -r dist 2> /dev/null) || true && npx tsc -p tsconfig.build.json",
"lint": "npx eslint . --ext .ts",
"test:rate-limiting": "node --env-file .env.test --test --import tsx src/components/rate-limiting-management/tests/*.test.ts",
"test:webhooks": "node --env-file .env.test --test --import tsx src/components/webhooks-management/tests/*.test.ts",
"test:auth": "node --env-file .env.test --test --import tsx src/components/auth-management/tests/*.test.ts",
"test:lib:cache": "node --env-file .env.test --test --import tsx src/lib/cache/tests/*.test.ts",
"test:lib:scheduler": "node --env-file .env.test --test --import tsx src/lib/jobs-scheduler/tests/*.test.ts",
"test:lib:broker": "node --env-file .env.test --test --import tsx src/lib/messages-broker/tests/*.test.ts",
"test:lib:primitives": "node --env-file .env.test --test --import tsx src/lib/primitives/**/**/*.test.ts",
"test": "npm run test:webhooks && npm run test:lib:cache && npm run test:lib:scheduler && npm run test:lib:broker && npm run test:lib:primitives && npm run test:rate-limiting",
"docker:dev": "docker compose -f docker/dev/docker-compose.yml up",
"docker:test": "docker compose -f docker/test/docker-compose.yml up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yasser-Belatreche/nodejs-building-blocks.git"
},
"keywords": [
"nodejs",
"typescript"
],
"author": "Yasser Belatreche",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yasser-Belatreche/nodejs-building-blocks/issues"
},
"homepage": "https://github.com/Yasser-Belatreche/nodejs-building-blocks#readme",
"engines": {
"node": "20.11.0",
"npm": "10.2.4"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/node": "^20.11.16",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-prettier": "^5.1.3",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@faker-js/faker": "^8.4.0",
"amqplib": "^0.10.3",
"aws-sdk": "^2.1598.0",
"cloudinary": "^2.1.0",
"mongoose": "^8.1.1",
"redis": "^4.6.13",
"ulid": "^2.3.0"
}
}