-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
62
63
64
{
"name": "gmmcal.com.br",
"private": true,
"description": "My personal website code, playground and learning lab.",
"version": "3.0.0",
"homepage": "https://www.gmmcal.com.br",
"repository": "https://github.com/gmmcal/gmmcal.com.br",
"bugs": {
"url": "https://github.com/gmmcal/gmmcal.com.br/issues",
"email": "[email protected]"
},
"author": {
"name": "Gustavo Cunha",
"email": "[email protected]",
"url": "https://www.gmmcal.com.br"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/gmmcal/gmmcal.com.br/blob/main/LICENSE"
}
],
"contributors": [
{
"name": "Gustavo Cunha",
"email": "[email protected]",
"url": "https://www.gmmcal.com.br"
}
],
"keywords": [
"ruby",
"rails",
"jest",
"rspec",
"ruby-on-rails",
"cypress",
"end-to-end-testing",
"end-to-end",
"github-actions",
"hakiri",
"heroku",
"ci-cd"
],
"engines": {
"node": "^20.11.1",
"npm": "^10.2.4",
"yarn": "^4.5.0"
},
"devDependencies": {
"cypress": "*",
"eslint": "*",
"start-server-and-test": "*"
},
"scripts": {
"cypress:dev": "start-test server:start 3000 cypress:open",
"server:start": "bundle exec rails server -u puma -p 3000",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cypress:ci": "start-test server:start 3000 cypress:run",
"eslint": "eslint --config=eslintrc.config.mjs app/javascript/**/**.js",
"eslint:tests": "eslint --config=eslintrc.config.mjs spec/**/**.js"
},
"packageManager": "[email protected]"
}