-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 KB
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
65
66
67
68
69
70
{
"name": "visionboard",
"version": "0.1.0-beta3",
"description": "Transforming Data into Actionable insights",
"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:export-checklists": "node scripts/export-checklists.js",
"db:seed": "knex seed:run",
"prestart": "npm run db:migrate",
"start": "node server.js",
"test:e2e": "NODE_ENV=test playwright test",
"test:e2e-ci": "NODE_ENV=test playwright test --reporter=list",
"test:e2e-ui": "NODE_ENV=test playwright test --ui",
"test:e2e-debug": "NODE_ENV=test playwright test --debug",
"test:e2e-report": "NODE_ENV=test playwright show-report"
},
"keywords": [
"security",
"CLI"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpenPathfinder/visionBoard.git"
},
"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",
"date-fns": "4.1.0",
"debug": "4.3.7",
"ejs": "3.1.10",
"express": "^5.1.0",
"knex": "3.1.0",
"lodash": "^4.17.21",
"nock": "14.0.1",
"octokit": "3.2.1",
"pg": "8.13.1",
"pino": "9.5.0",
"pino-pretty": "13.0.0",
"serve-static": "1.16.2",
"swagger-endpoint-validator": "^4.1.0",
"validator": "13.12.0"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"jest": "29.7.0",
"standard": "17.1.2",
"supertest": "^7.1.0"
}
}