-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.18 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
{
"name": "ruby-clean-api-project",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "21.x"
},
"scripts": {
"start": "bundle exec ruby ./src/main/server.rb",
"start:dev": "bundle exec rerun --pattern 'src/**/*.{rb}' 'rackup -p 5050 -r ./src/main/server.rb -s puma'",
"up": "docker-compose up -d",
"down": "docker-compose down",
"test": "ENVIRONMENT=test bundle exec rspec --format documentation --color",
"test:verbose": "ENVIRONMENT=test bundle exec rspec --format documentation",
"test:unit": "ENVIRONMENT=test bundle exec rspec --pattern 'tests/unit/**/*_spec.rb' --format documentation --color",
"test:integration": "ENVIRONMENT=test bundle exec rspec --pattern 'tests/integration/**/*_spec.rb' --format documentation --color",
"test:staged": "ENVIRONMENT=test bundle exec rspec --only-failures",
"test:ci": "ENVIRONMENT=test COVERAGE=true npm test",
"ruby:fix": "bundle exec rubocop -A",
"ruby:lint": "bundle exec rubocop",
"prepare": "husky"
},
"devDependencies": {
"git-commit-msg-linter": "^2.3.11",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
}
}