-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2 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
75
76
77
{
"name": "@scienceartmagic/rfc",
"version": "0.1.6",
"description": "RFC (Reanimated Fast Context): Jack Herrington's Fast Context, now with an additional version based on Reanimated's useSharedValue.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"react-native": "lib/module/index",
"types": "lib/typescript/index",
"author": "Science/Art/Magic",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --skipLibCheck --noEmit",
"build": "bob build",
"lint": "eslint --ext .ts,.js,.tsx,.jsx ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScienceArtMagic/RFC.git"
},
"keywords": [
"react",
"native",
"reanimated",
"context",
"universal",
"web",
"electron"
],
"peerDependencies": {
"react": ">=18.1.0",
"react-dom": ">=18.1.0",
"react-native": ">=0.70.5",
"react-native-reanimated": ">=2.12.0",
"react-native-web": ">=0.18.7"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "^18.0.28",
"@types/react-native": "^0.70.11",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-expo": "^9.2.2",
"eslint": "^7.32.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"husky": "^4.3.8",
"prettier": "^2.8.4",
"pretty-quick": "^2.0.2",
"react": ">=18.1.0",
"react-dom": ">=18.1.0",
"react-native": ">=0.70.5",
"react-native-builder-bob": "^0.20.3",
"react-native-reanimated": "^2.12.0",
"react-native-web": ">=0.18.12",
"typescript": "^4.9.5"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"configFile": "./babel.config.js"
}
],
"module",
"typescript"
]
}
}