-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1.24 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
{
"name": "react-native-cli-templates",
"version": "0.0.0",
"private": true,
"scripts": {
"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",
"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": "18.3.1"
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^3.0.1",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@react-native-community/eslint-config": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.37.2",
"npm-license-crawler": "^0.2.1",
"prettier": "^3.4.2",
"typescript": "5.7.2"
},
"prettier": "@brightlayer-ui/prettier-config"
}