forked from mobxjs/mobx.dart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
15 lines (15 loc) · 909 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "mobx.dart",
"version": "1.0.0",
"description": "This file is purely to leverage NPM for running the scripts. This is NOT to track any dependencies.",
"scripts": {
"pub:get:mobx": "cd mobx; flutter packages pub get;",
"pub:upgrade:mobx": "cd mobx; flutter packages pub upgrade;",
"pub:get:mobx_codegen": "cd mobx_codegen; flutter packages pub get;",
"pub:upgrade:mobx_codegen": "cd mobx_codegen; flutter packages pub upgrade;",
"gen:mobx:example": "cd mobx/example; flutter packages pub run build_runner build --delete-conflicting-outputs;",
"gen:mobx_examples": "cd mobx_examples; flutter packages pub run build_runner watch --delete-conflicting-outputs;",
"gen:mobx_codegen": "cd mobx_codegen; flutter packages pub run build_runner build --delete-conflicting-outputs;",
"set:versions": "dart ./tool/expose_version.dart mobx flutter_mobx mobx_codegen"
}
}