forked from freeCodeCamp/mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 996 Bytes
/
package.json
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
{
"name": "@freecodecamp/mobile",
"version": "0.0.1",
"description": "The freeCodeCamp mobile app open-source codebase",
"license": "BSD-3-Clause",
"private": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/mobile.git"
},
"bugs": {
"url": "https://github.com/freeCodeCamp/mobile/issues"
},
"homepage": "https://github.com/freeCodeCamp/mobile#readme",
"author": "freeCodeCamp <[email protected]>",
"workspaces": [
"backend-api"
],
"scripts": {
"postinstall": "cd mobile-app && flutter pub get",
"develop": "npm-run-all flutter:build-runner -p develop:*",
"develop:api": "cd mobile-api && npm run dev",
"develop:app": "cd mobile-app && flutter run",
"flutter:build-runner": "cd mobile-app && flutter pub run build_runner build --delete-conflicting-outputs"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"shx": "^0.3.3"
}
}