-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "openjs-foundation",
"version": "1.0.0",
"description": "Secure Dashboard for the OpenJS Foundation",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "NODE_ENV=test jest --runInBand",
"test:coverage": "NODE_ENV=test jest --runInBand --coverage",
"test:ci": "NODE_ENV=test jest --runInBand --verbose --coverage",
"infra:start": "docker-compose up -d",
"infra:stop": "docker-compose down",
"db:migrate": "knex migrate:latest",
"db:rollback": "knex migrate:rollback",
"db:generate-schema": "docker-compose run schema-dump",
"db:export-checks": "node scripts/export-checks.js",
"db:seed": "knex seed:run"
},
"keywords": [],
"author": "Ulises Gascón",
"license": "MIT",
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"@ulisesgascon/array-to-chunks": "2.0.0",
"@ulisesgascon/normalize-boolean": "2.0.0",
"@ulisesgascon/simplify-object": "2.0.0",
"@ulisesgascon/string-to-array": "2.0.0",
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"commander": "12.1.0",
"date-fns": "4.1.0",
"debug": "4.3.7",
"inquirer": "12.1.0",
"knex": "3.1.0",
"octokit": "3.2.1",
"pg": "8.13.1",
"pino": "9.5.0",
"pino-pretty": "13.0.0",
"validator": "13.12.0"
},
"devDependencies": {
"jest": "29.7.0",
"standard": "17.1.2"
}
}