-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "@shopify/restyle",
"version": "2.4.3",
"license": "MIT",
"description": "A system for building constraint-based UI components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint '**/*.{ts,tsx}' && yarn tsc --noEmit",
"lint-fix": "eslint --fix '**/*.{ts,tsx}'",
"prepublishOnly": "yarn run build",
"up": "yarn && yarn fixture-up",
"fixture-up": "yarn build && cd fixture && yarn && pod install --project-directory=ios",
"start": "cd fixture && react-native start",
"run-ios": "cd fixture && yarn react-native run-ios",
"run-android": "cd fixture && yarn react-native run-android",
"deploy:documentation": "gh-pages -d documentation/build"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/restyle.git"
},
"devDependencies": {
"@shopify/eslint-plugin": "^42.1.0",
"@tsconfig/react-native": "^3.0.0",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"eslint": "^8.32.0",
"gh-pages": "^5.0.0",
"jest": "^29.2.1",
"prettier": "^2.4.1",
"react": "18.2.0",
"react-native": "^0.72.0",
"react-test-renderer": "18.2.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"files": [
"dist/*"
]
}