-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.21 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.21 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
{
"name": "flurryx",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/core && npm run build -w packages/store && npm run build -w packages/rx && npm run build -w packages/flurryx",
"marketing:capture": "node tools/marketing-gifs/run.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --config packages/core/vitest.config.ts --coverage && vitest run --config packages/store/vitest.config.ts --coverage && vitest run --config packages/rx/vitest.config.ts --coverage && vitest run --config packages/flurryx/vitest.config.ts --coverage",
"test:coverage:workspace": "vitest run --coverage --coverage.reporter=lcov --coverage.reporter=clover --coverage.reporter=text",
"typecheck": "npm run typecheck --workspaces",
"changeset": "changeset",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@angular/common": "^19.2.19",
"@angular/core": "^19.2.19",
"@changesets/cli": "^2.27.0",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^2.1.9",
"playwright": "^1.55.0",
"rxjs": "^7.8.2",
"tsup": "^8.0.0",
"typescript": "~5.5.0",
"vitest": "^2.0.0"
}
}