-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.81 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
{
"name": "wolf-ui",
"description": "Design System and Component Library for React & React Native",
"main": "./build/dist/index.js",
"author": "Max Wolf <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react",
"**/react/**",
"**/react-native",
"**/react-native/**",
"react-native-svg",
"react-native-vector-icons",
"jetifier",
"**/@maxcwolf/**"
]
},
"keywords": [
"component library",
"mobile",
"react-native",
"styled-system",
"restyle",
"theme-specification"
],
"scripts": {
"build:ui-rn": "yarn workspace @maxcwolf/ui-react-native prepare",
"start": "yarn workspace @maxcwolf/playground start",
"start:fresh": "yarn workspace @maxcwolf/playground start:fresh",
"start:superfresh": "yarn workspace @maxcwolf/playground start:superfresh",
"prepare": "husky install",
"lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc --noEmit --composite false",
"prettier": "prettier --check packages/**/*.tsx --write",
"prerelease": "lerna run clean",
"release": "lerna publish",
"version:prerelease": "lerna version prerelease --no-push",
"ios": "yarn workspace @maxcwolf/playground ios",
"android": "yarn workspace @maxcwolf/playground android"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"resolutions": {
"react": "~17.0.2",
"react-native": "~0.64.2"
}
}