-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 873 Bytes
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
{
"name": "fcrn",
"version": "1.0.0",
"dependencies": {
"react": "18.2.0",
"react-native": "0.72.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.14",
"@types/react-native-get-random-values": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "29.7.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"yarn": "1.22.19"
},
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "yarn dev:expo",
"dev:expo": "cd apps/fcrn-example-app && yarn start",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"format": "prettier '**/*.{ts,tsx,json,md}' --write"
}
}