This repository was archived by the owner on Dec 29, 2022. It is now read-only.
forked from etn-ccis/blui-react-native-cli-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.93 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.93 KB
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
38
39
40
{
"name": "react-native-cli-templates",
"version": "0.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint \"**/**.{ts,tsx}\"",
"lint:fix": "eslint \"**/**.{ts,tsx}\" --fix",
"prettier": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"prettier:check": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"rnlink": "npx react-native link",
"start:blank-typescript-ios": "cd demo && yarn start:blank-typescript-ios",
"start:blank-typescript-android": "cd demo && yarn start:blank-typescript-android",
"start:routing-typescript-ios": "cd demo && yarn start:routing-typescript-ios",
"start:routing-typescript-android": "cd demo && yarn start:routing-typescript-android",
"start:authentication-typescript-ios": "cd demo && yarn start:authentication-typescript-ios",
"start:authentication-typescript-android": "cd demo && yarn start:authentication-typescript-android",
"precommit": "cd demo && bash ./scripts/buildBlankTypescript.sh && cd .. && yarn lint && yarn prettier && yarn generate:licenses",
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json"
},
"dependencies": {
"react": "16.13.1"
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^2.0.5",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@react-native-community/eslint-config": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-react": "^7.0.0",
"npm-license-crawler": "^0.2.1",
"typescript": "^3.8.3"
},
"prettier": "@brightlayer-ui/prettier-config"
}