-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "foundry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"lint": "pnpm -r exec eslint . -c ../../packages/config/eslint.config.js",
"format": "prettier --write '**/*.{ts,tsx,md,json}' --config ./.prettierrc --ignore-unknown",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript-eslint": "^8.54.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix --config ./packages/config/eslint.config.js",
"prettier --write --config ./.prettierrc"
],
"*.{json,md}": [
"prettier --write --config ./.prettierrc"
]
},
"pnpm": {
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5"
}
}
}