-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 933 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 933 Bytes
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
{
"name": "unit-based-development",
"version": "1.0.0",
"description": "Project skeleton that demonstrates the principles of Unit Based Development!",
"main": "index.js",
"scripts": {
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down && docker volume rm dbVolume localstackVolume",
"test": "jest --testTimeout=10000 --detectOpenHandles",
"test:remote": "RUN_REMOTE=true jest --testTimeout=10000 --detectOpenHandles"
},
"author": "Joshua Evans <TheJoshuaEvans@gmail.com>",
"repository": "https://github.com/TheJoshuaEvans/UnitBasedDevelopment",
"license": "MIT",
"devDependencies": {
"eslint": "8.41.0",
"jest": "29.5.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.338.0",
"postgres": "^3.3.4"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"globalSetup": "./test/jest-setup.js"
}
}