-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.9 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
43
44
45
46
47
{
"name": "flutter_starter_template",
"version": "1.0.0",
"description": "A comprehensive Flutter starter template",
"scripts": {
"setup": "flutter pub get && flutter pub run build_runner build --delete-conflicting-outputs && npm run hooks:install",
"build:dev": "flutter build apk --flavor dev -t lib/main_dev.dart",
"build:staging": "flutter build apk --flavor staging -t lib/main_staging.dart",
"build:prod": "flutter build apk --flavor prod -t lib/main_prod.dart",
"run:dev": "flutter run --flavor dev -t lib/main_dev.dart",
"run:staging": "flutter run --flavor staging -t lib/main_staging.dart",
"run:prod": "flutter run --flavor prod -t lib/main_prod.dart",
"test": "flutter test",
"test:coverage": "flutter test --coverage",
"test:integration": "flutter test integration_test/",
"analyze": "flutter analyze",
"format": "dart format .",
"format:check": "dart format --output=none --set-exit-if-changed .",
"generate": "flutter pub run build_runner build --delete-conflicting-outputs",
"clean": "flutter clean && flutter pub get",
"lint": "flutter analyze && dart format --output=none --set-exit-if-changed .",
"pre-commit": ".githooks/pre-commit",
"hooks:install": "node scripts/setup-hooks.js",
"hooks:uninstall": "git config --unset core.hooksPath"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/flutter_starter_template.git"
},
"keywords": [
"flutter",
"dart",
"mobile",
"starter",
"template",
"bloc",
"clean-architecture"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"husky": "^8.0.3"
},
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac"
}