forked from bcgov/bc-wallet-mobile
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.34 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
{
"name": "bc-wallet-mobile",
"version": "1.0.0",
"description": "![Lifecycle:Maturing](https://img.shields.io/badge/Lifecycle-Maturing-007EC6)",
"main": "index.js",
"scripts": {
"install:bifold": "cd bifold/packages/legacy/core && yarn install --frozen-lockfile",
"install:app": "cd app && npm ci",
"install:all": "run-s install:bifold install:app",
"build:bifold": "cd bifold/packages/legacy/core && yarn typecheck && yarn prepack",
"build:app": "cd app && npm run typecheck && npm run prepack --if-present",
"build:all": "run-s build:bifold build:app",
"prepare": "run-s install:all build:all",
"lint:app": "cd app && npm run lint --if-present",
"lint": "run-s lint:app",
"prettier:app": "cd app && npm run prettier --if-present",
"prettier": "run-s prettier:app",
"test": "cd app && npm test",
"pre-commit-lint:app": "cd app && npm run pre-commit-lint",
"pre-commit-lint": "run-s pre-commit-lint:app",
"typecheck": "cd app && npm run typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcgov/bc-wallet-mobile.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bcgov/bc-wallet-mobile/issues"
},
"homepage": "https://github.com/bcgov/bc-wallet-mobile#readme",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}