-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
74 lines (74 loc) · 2.37 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
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
{
"name": "react-native-performance-monorepo",
"version": "1.0.0",
"description": "This monorepo contains the packages related to profiling performance of React Native apps.",
"private": true,
"scripts": {
"build": "tsc -b && cd packages/flipper-plugin-react-native-performance && yarn build",
"version": "bin/version.mjs",
"release": "lerna version --conventional-commits",
"generate": "plop",
"flightcheck": "yarn build && yarn lint && yarn test",
"typescript": "tsc && cd packages/flipper-plugin-react-native-performance && tsc",
"lint": "yarn eslint . --ext .ts,.tsx",
"test": "tsc -b && yarn jest",
"ios": "yarn workspace fixture ios",
"android": "yarn workspace fixture android",
"start": "yarn workspace fixture start",
"up": "yarn && bundle install && yarn workspace fixture pods",
"prerelease": "bin/prerelease.mjs",
"purge": "rm -rf node_modules fixture/node_modules fixture/dist fixture/Pods"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/react-native-performance.git"
},
"bugs": {
"url": "https://github.com/Shopify/react-native-performance/issues"
},
"publishConfig": {
"access": "restricted"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/runtime": "^7.18.0",
"@quilted/react-testing": "^0.5.11",
"@react-native-community/eslint-config": "^3.0.1",
"@shopify/eslint-plugin": "^41.0.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^27.0.3",
"@types/react": "17.0.44",
"@types/react-native": "0.67.7",
"@typescript-eslint/parser": "^5.5.0",
"abort-controller": "^3.0.0",
"babel-jest": "^28.0.3",
"chalk": "^5.0.0",
"eslint": "^8.4.0",
"graphql": "^16.1.0",
"jest": "^27.0.3",
"lerna": "^5.0.0",
"plop": "^3.0.2",
"press-any-key": "^0.1.1",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-native": "0.68.2",
"react-test-renderer": "17.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.1.3",
"enhanced-resolve": "^5.9.3"
},
"resolutions": {
"@types/react": "17.0.44"
},
"homepage": "https://github.com/Shopify/react-native-performance#readme",
"workspaces": {
"packages": [
"packages/*",
"fixture"
],
"nohoist": [
"packages/flipper-plugin-react-native-performance"
]
}
}