-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 827 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 827 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
{
"private": true,
"author": "Janic Duplessis",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:ts": "tsc --noEmit",
"lint:prettier": "prettier 'src/**/*.{ts,tsx}' --check",
"lint": "flipper-pkg lint && yarn lint:prettier",
"build": "flipper-pkg bundle"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/flipper",
"**/flipper/**",
"**/flipper-pkg",
"**/flipper-pkg/**"
]
},
"devDependencies": {
"@types/react": "^17.0.30",
"@types/react-native": "^0.65.7",
"react": "^17.0.2",
"react-native": "^0.66.0",
"react-native-flipper": "^0.115.0",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"name": "flipper-plugin-relay-devtools"
}