-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
92 lines (92 loc) · 4.4 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@fs/monorepo",
"version": "3.3.3",
"description": "Service for running pewpew tests",
"private": true,
"workspaces": [
"./lib/config-wasm/pkg",
"./common",
"./agent",
"./controller"
],
"scripts": {
"start": "npm-run-all --parallel start:agent start:controller",
"start:controller": "cd controller && npm run start",
"start:agent": "cd agent && npm run start",
"dev": "cd controller && npm run dev",
"build": "npm run lint && npm run build:common && npm-run-all --parallel build:agent build:controller",
"storybook": "cd controller && npm run storybook",
"build-storybook": "cd controller && npm run build-storybook",
"lint": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js --fix .",
"linterror": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js . --max-warnings 0",
"build:common": "cd common && npm run build",
"build:agent": "cd agent && npm run build",
"build:controller": "cd controller && npm run build",
"build:react": "cd controller && npm run build:react",
"build:controller:test": "cd controller && npm run build:test",
"build:test": "npm run build:common && npm-run-all --parallel build:agent build:controller:test",
"testonly:common": "cd common && npm run testonly",
"testonly:agent": "cd agent && npm run testonly",
"testonly:controller": "cd controller && npm run testonly",
"testonly": "npm-run-all --parallel testonly:common testonly:agent testonly:controller",
"testmerge": "mkdir -p .nyc_output && rimraf .nyc_output/*.json && cp common/.nyc_output/*.json .nyc_output/ && cp agent/.nyc_output/*.json .nyc_output/ && cp controller/.nyc_output/*.json .nyc_output/ && nyc merge .nyc_output testmerge.json && nyc report --reporter=lcov --reporter=text",
"test": "npm-run-all --serial linterror build:test testonly && npm run testmerge",
"testslow": "npm run linterror && npm run test:common && npm run test:agent && npm run test:controller",
"test:common": "cd common && npm run test",
"test:agent": "cd agent && npm run test",
"test:controller": "cd controller && npm run test",
"acceptance:all": "npm-run-all --parallel start acceptance:sleep",
"acceptance:sleep": "sleep 30 && npm run acceptance",
"acceptance": "npm-run-all --serial acceptance:agent acceptance:controller",
"acceptance:agent": "cd agent && npm run acceptance",
"acceptance:controller": "cd controller && npm run acceptance",
"integration": "npm-run-all --serial lint integration:common integration:agent integration:controller testmerge",
"integration:common": "cd common && npm run integration",
"integration:agent": "cd agent && npm run integration",
"integration:controller": "cd controller && npm run integration",
"coverage": "npm-run-all --serial lint coverage:common coverage:agent coverage:controller testmerge",
"coverage:common": "cd common && npm run coverage",
"coverage:agent": "cd agent && npm run coverage",
"coverage:controller": "cd controller && npm run coverage",
"testcleanup": "cd controller && npm run testcleanup",
"clean:all": "npm-run-all --parallel clean clean:logs clean:npm",
"clean:logs": "rimraf coverage/ mutants.out/ common/app-ppaas-*.json agent/app-ppaas-*.json controller/app-ppaas-*.json examples/stats-*.json examples/*_*.yaml.out examples/log-results-* examples/search-results-*",
"clean:npm": "rimraf node_modules/ package-lock.json controller/node_modules/ agent/node_modules/ common/node_modules/",
"clean": "rimraf common/dist/ agent/dist/ controller/dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FamilySearch/pewpew.git"
},
"bugs": {
"url": "https://github.com/FamilySearch/pewpew/issues"
},
"homepage": "https://github.com/FamilySearch/pewpew#readme",
"engines": {
"node": ">=18.0.0 <23.0.0"
},
"nyc": {
"reporter": ["lcov", "text"],
"exclude": "**/*.spec.ts"
},
"overrides": {
"eslint": "^9.15.0"
},
"dependencies": {
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"dotenv": "^16.0.0",
"dotenv-flow": "^4.0.1",
"eslint": "^9.15.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"npm-run-all2": "^7.0.0",
"nyc": "^17.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.3.0"
}
}