forked from rnw-community/rnw-community
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rnw-community",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"ts": "turbo run ts",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "run -T jest",
"test:coverage": "run -T jest --coverage",
"cpd": "yarn jscpd packages",
"format": "turbo run format",
"find-deadcode": "ts-prune",
"ci": "yarn lint && yarn build && yarn find-deadcode && yarn cpd && yarn test:coverage",
"clear": "turbo run clear",
"deps:clear": "turbo run clear:deps && yarn deps:clear:root",
"deps:clear:root": "rm -rf ./node_modules",
"postinstall": "yarn build"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-decorators": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/preset-typescript": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/config-lerna-scopes": "^17.0.2",
"@react-native-community/eslint-config": "^3.0.3",
"@types/jest": "^29.5.3",
"@types/node": "^18.0.6",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.2.1",
"caniuse-lite": "^1.0.30001370",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.1",
"jest": "^29.6.1",
"jscpd": "^3.4.5",
"lerna": "^5.1.8",
"lint-staged": "^13.0.3",
"metro-react-native-babel-preset": "0.76.7",
"prettier": "^2.8.4",
"react-test-renderer": "18.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-prune": "^0.10.3",
"turbo": "latest",
"typescript": "^4.9.5"
},
"packageManager": "yarn@3.4.1"
}