-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "delayed-queue-app",
"version": "0.0.1",
"description": "Test task: delayed queue app",
"author": "Alexey Samoshkin",
"license": "UNLICENSED",
"private": true,
"main": "src/index.js",
"scripts": {
"start": "docker-compose --env-file .env.local up --build --scale worker-follower=2 --abort-on-container-exit --force-recreate",
"stop": "docker-compose --env-file .env.local down",
"submit-jobs": "cross-env DOTENV_CONFIG_PATH=.env.local node -r dotenv/config ./test/submit-jobs.js",
"test": "cross-env DOTENV_CONFIG_PATH=.env.test node -r dotenv/config node_modules/.bin/jest --detectOpenHandles",
"lint": "eslint ./"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"change-case": "~4.1.2",
"express": "~4.18.2",
"ioredis": "~5.3.2",
"signal-exit": "~4.1.0",
"ulid": "~2.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.4",
"jest-extended": "^4.0.1",
"redis-memory-server": "^0.7.0",
"supertest": "^6.3.3",
"unix-timestamp": "^1.0.3"
}
}