-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.43 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.43 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
{
"name": "@flippercloud/monorepo",
"version": "0.0.1",
"private": true,
"description": "Flipper feature flag monorepo",
"author": "Jonathan Hoyt",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun --workspaces run build",
"test": "sh -c 'cd packages/flipper && bun run test && cd ../flipper-sequelize && bun run test && cd ../flipper-redis && bun run test'",
"test:coverage": "sh -c 'cd packages/flipper && bun run test:coverage && cd ../flipper-sequelize && bun run test:coverage && cd ../flipper-redis && bun run test:coverage'",
"lint": "bun --workspaces run lint",
"lint:fix": "bun --workspaces run lint:fix",
"type-check": "bun --workspaces run type-check",
"format": "prettier --write \"packages/**/src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"packages/**/src/**/*.{ts,tsx,json,md}\"",
"clean": "bun --workspaces run clean",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.15.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"eslint": "^9.15.0",
"jest": "^30.2.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.3.2"
}
}