-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 2.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "cares-grant-opportunities",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/usdigitalresponse/cares-grant-opportunities.git",
"author": "Pol Abellas, Rafael A <[email protected]>",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "20.11.1",
"yarn": ">=1.22.4",
"npm": "please-use-yarn"
},
"scripts": {
"cypress:run": "docker compose -f docker-compose.yml -f ./packages/e2e/docker-compose.yml run --rm e2e npx cypress run",
"cypress:up": "docker compose -f docker-compose.yml -f ./packages/e2e/docker-compose.yml up -d e2e",
"cypress:down": "docker compose -f docker-compose.yml -f ./packages/e2e/docker-compose.yml rm -s -v -f e2e",
"build": "yarn workspace client run build",
"coverage": "nyc --reporter=lcov --reporter=text-summary yarn workspaces run test",
"create_tenant": "yarn workspace server create_tenant",
"db:migrate": "yarn workspace server run db:migrate",
"db:seed": "yarn workspace server run db:seed",
"debug:server": "yarn workspace server debug",
"lint": "yarn workspaces run lint",
"pre-commit": "yarn lint",
"psql": "psql opportunities pg",
"serve:op": "POSTGRES_URL=postgres://localhost/opportunities yarn serve",
"serve:server": "yarn workspace server run start",
"serve": "concurrently \"yarn workspace client run dev\" \"yarn workspace server run serve\"",
"setup": "yarn install",
"start:client": "yarn workspace client dev",
"start:op": "POSTGRES_URL=postgres://localhost/opportunities yarn start",
"start:server": "yarn workspace server serve",
"start": "yarn serve",
"test:client": "yarn workspace client test",
"test:server": "yarn workspace server test",
"test": "yarn workspaces run test",
"start:arpa-audit-worker": "yarn workspace server start:arpa-audit-worker",
"debug:arpa-audit-worker": "yarn workspace server debug:arpa-audit-worker"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"concurrently": "^7.6.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0"
}
}