-
Notifications
You must be signed in to change notification settings - Fork 1
/
help.json
22 lines (22 loc) · 1.08 KB
/
help.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"make_env:dev": "generate environment file (env.json) with dev variables",
"make_env:test": "generate environment file (env.json) with test variables (for use by circleci primarily)",
"init": "initialize package",
"init:ios": "init app for ios",
"ios": "serve app on ios simulator",
"android": "serve app on android emulator",
"clean:android": "runs gradle clean on the project",
"reset": "deletes node modules and re-installs modules and pods",
"reset:all": "clears cache for watchman, rn packager, metro, node modules, runs cache clean and installs",
"start": "start app bundler",
"start:reset": "reset and start app bundler",
"start:reset:all": "runs reset:all then start:reset",
"test": "run all unit tests",
"test:watch": "run all unit tests (in watch mode)",
"test:ui": "run all UI component tests",
"test:ui:watch": "run all UI component tests (in watch mode)",
"lint": "run JS linter",
"format": "formats the codebase with prettier",
"code:lint": "runs prettier and eslint linters",
"npm:audit": "audit NPM dependencies for critical vulnerabilities",
}