-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "feature-flag-service",
"module": "public/index.html",
"type": "module",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/babel__core": "^7.20.1",
"@types/express": "^4.17.17",
"@types/react": "^16.8 || ^17.0 || ^18.0",
"@types/react-dom": "^16.8 || ^17.0 || ^18.0",
"@types/web": "^0.0.112",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"babel-preset-solid": "^1.7.7",
"bun-types": "^0.6.0",
"eslint": "^8.46.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"patch-package": "^8.0.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
},
"dependencies": {},
"lint-staged": {
"*.(ts|tsx)": [
"eslint --cache --fix",
"prettier -w"
]
},
"scripts": {
"prepare": "husky install",
"build:sdk": "bun --cwd packages/sdk build",
"gen:migration": "drizzle-kit generate:sqlite --schema packages/core/schema.ts --out migrations",
"run:core": "bun run packages/core/index.ts | bunx pino-pretty",
"run:cli": "bun run packages/cli/index.ts"
}
}