-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
37 lines (37 loc) · 1.15 KB
/
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
35
36
37
{
"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]>",
"scripts": {
"build:api": "cd mobile-api && npm run build",
"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",
"install:api": "cd mobile-api && npm ci",
"install:app": "cd mobile-app && flutter pub get",
"postinstall": "npm-run-all -p install:*",
"prepare": "husky"
},
"devDependencies": {
"husky": "9.0.11",
"lint-staged": "15.2.7",
"npm-run-all2": "6.2.0",
"shx": "0.3.4"
}
}