-
-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 639 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 639 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
{
"name": "flutter_gen",
"private": true,
"author": "wasabeef",
"scripts": {
"format": "prettier --config prettier.config.js --write \"**/*.+(md|yml|yaml|json)\"",
"prepare": "husky install"
},
"lint-staged": {
"**/*.+(md|yml|yaml|json)": [
"pnpm run format"
],
"!(packages/core/test_resources/actual_data/**/*)*.dart": [
"melos format",
"dart run packages/core/scripts/generate_facts.dart"
]
},
"devDependencies": {
"husky": "8.0.3",
"lint-staged": "^16.0.0",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^3.0.0"
},
"packageManager": "pnpm@10.32.1"
}