-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 4.3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 4.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@fs/monorepo",
"version": "4.0.5",
"description": "Service for running pewpew tests",
"type": "module",
"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 --cache --fix .",
"linterror": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js --cache . --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",
"test": "npm-run-all --serial linterror build:test testonly coverage:merge",
"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 coverage:merge",
"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 coverage:merge",
"coverage:common": "cd common && npm run coverage",
"coverage:agent": "cd agent && npm run coverage",
"coverage:controller": "cd controller && npm run coverage",
"coverage:merge": "node scripts/merge-coverage.js && c8 report --reporter=lcov --reporter=text --reporter=html",
"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* common/coverage/ agent/app-ppaas-*.json* agent/coverage/ controller/app-ppaas-*.json* controller/coverage/ 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": ">=20.0.0 <25.0.0"
},
"overrides": {
"eslint": "^10.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"c8": "^11.0.0",
"dotenv": "^17.0.0",
"dotenv-flow": "^4.0.1",
"eslint": "^10.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^11.0.0",
"npm-run-all2": "^8.0.0",
"rimraf": "^6.0.0",
"typescript": "^5.3.0"
}
}