-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.11 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
{
"name": "@lifeomic/prim",
"version": "1.2.1",
"description": "Prim is a customizable TypeScript atomic styles framework for React Native.",
"repository": "git@github.com:lifeomic/react-native-prim.git",
"author": "LifeOmic <oss@lifeomic.com>",
"license": "MIT",
"keywords": [
"tailwingcss",
"tailwind",
"react-native",
"react",
"typescript"
],
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"react-native": "src/index.ts",
"types": "dist/typescript/index.d.ts",
"scripts": {
"build": "bob build",
"test": "jest",
"tsc": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/**/*.tsx src/**/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencis": {
"hoist-non-react-statics": "^3.0.0",
"use-memo-one": "^1.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.50.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.2",
"@react-native-community/bob": "^0.16.2",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/react-native": "^7.0.2",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.13",
"@types/react": "^16.9.49",
"@types/react-native": "^0.63.18",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.3.0",
"eslint": "^7.9.0",
"hoist-non-react-statics": "^3.3.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"metro-react-native-babel-preset": "^0.63.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"react": "^16.13.1",
"react-native": "^0.64.1",
"react-test-renderer": "^16.13.1",
"typescript": "^4.0.3",
"use-memo-one": "^1.1.1"
},
"publishConfig": {
"access": "public"
},
"@react-native-community/bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "./tsconfig.build.json"
}
]
]
}
}