-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (33 loc) · 1.15 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
{
"name": "js-expert",
"version": "1.0.0",
"main": "server/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "LOG_DISABLE=true NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --force-exit --detectOpenHandles --no-cache ",
"test:watch": "LOG_DISABLE=true NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --no-cache --watchAll",
"test:coverage": "LOG_DISABLE=true NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --force-exit --no-cache --coverage tests/unit",
"start:docker": "docker-compose up --build start",
"dev:docker": "docker-compose up --build dev",
"test:docker": "docker-compose up --build test",
"test:watch:docker": "docker-compose up --build test-watch",
"test:coverage:docker": "docker-compose up --build test-coverage"
},
"engines": {
"node": "17"
},
"devDependencies": {
"jest": "^27.5.1",
"nodemon": "2",
"portfinder": "^1.0.28",
"supertest": "^6.2.2"
},
"dependencies": {
"pino": "^7.8.1",
"pino-pretty": "^7.5.3",
"throttle": "^1.0.3"
}
}