-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 896 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 896 Bytes
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
{
"name": "stripe-sync-engine",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"typecheck": "pnpm -r run typecheck",
"lint": "pnpm -r run lint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"pino": "^10.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^8.0.2"
},
"packageManager": "pnpm@10.33.0",
"overrides": {
"sucrase": "^3.35.1"
}
}