-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
83 lines (83 loc) · 2.53 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
78
79
80
81
82
83
{
"name": "checkout-sheet-kit-react-native",
"description": "A React Native library for Shopify's Checkout Kit.",
"private": true,
"version": "0.0.1",
"repository": "https://github.com/Shopify/checkout-sheet-kit-react-native",
"author": "Shopify (https://github.com/Shopify/checkout-sheet-kit-react-native)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shopify/checkout-sheet-kit-react-native/issues"
},
"homepage": "https://github.com/Shopify/checkout-sheet-kit-react-native",
"workspaces": [
"sample",
"modules/**/*"
],
"scripts": {
"clean": "watchman watch-del .",
"sample": "yarn workspace sample",
"module": "yarn workspace @shopify/checkout-sheet-kit",
"pod-install": "(cd sample/ios && bundle install && bundle exec pod repo update && bundle exec pod cache clean --all && NO_FLIPPER=1 bundle exec pod install --repo-update)",
"snapshot": "./scripts/create_snapshot",
"compare-snapshot": "./scripts/compare_snapshot",
"turbo": "turbo",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.74.83",
"@react-native/eslint-config": "0.74.83",
"@react-native/metro-config": "0.74.83",
"@react-native/typescript-config": "0.74.83",
"@tsconfig/react-native": "^3.0.0",
"@types/jest": "^29.5.10",
"@types/react": "^18",
"@types/react-native-dotenv": "^0.2.1",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.19.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.2.1",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-native": "0.74.1",
"react-native-dotenv": "^3.4.9",
"react-native-gesture-handler": "^2.15.0",
"react-native-gradle-plugin": "^0.71.19",
"react-test-renderer": "18.2.0",
"ts-jest": "^29.1.1",
"turbo": "^1.10.16",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18"
},
"prettier": {
"arrowParens": "avoid",
"bracketSameLine": true,
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all",
"semi": true,
"useTabs": false,
"proseWrap": "always"
},
"keywords": [
"react-native",
"shopify",
"checkout"
],
"eslintConfig": {
"root": true,
"extends": "@react-native",
"rules": {
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/consistent-type-imports": "error",
"no-console": "error"
}
},
"packageManager": "yarn@4.4.1"
}