-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.21 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
{
"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 <rafael.polabellas@dematic.com>",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"setup": "yarn install && yarn run bootstrap",
"start": "lerna run start --stream",
"start:op": "POSTGRES_URL=postgres://localhost/opportunities lerna run start --stream",
"serve:op": "POSTGRES_URL=postgres://localhost/opportunities lerna run start --stream",
"build": "lerna run build --stream",
"db:migrate": "lerna run db:migrate --stream",
"serve": "lerna run serve --stream",
"serve:server": "lerna run start --stream --scope server",
"test": "lerna run test",
"lint": "lerna run lint",
"pre-commit": "yarn lint",
"psql":"psql opportunities pg"
},
"dependencies": {
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"lerna": "^3.22.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.0"
}
}