-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
111 lines (111 loc) · 2.99 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-native-reflect",
"description": "Responsive, themeable style system for React Native and React Native Web",
"author": "Santiago Ferreira",
"version": "0.1.6",
"license": "MIT",
"main": "lib/index.js",
"react-native": "lib/rn.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/sntx/react-native-reflect"
},
"homepage": "https://sntx.github.io/react-native-reflect",
"keywords": [
"react-native",
"react-native-web",
"expo",
"styled-system",
"styled-components",
"design-systems",
"style-props",
"responsive-design",
"styling",
"theming",
"universal-react"
],
"scripts": {
"build:clean": "rm -rf lib",
"build:rollup": "rollup -c && rollup -c --environment TARGET:react-native",
"build:types": "cp ./src/{index,styled,theme,types,useStyled,utils}.d.ts ./lib/",
"build": "run-p build:rollup build:types",
"test": "node_modules/.bin/jest",
"test:debug": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand",
"dtslint": "dtslint --onlyTestTsNext src/__type_tests__",
"typedoc": "typedoc",
"deploy": "run-s test dtslint typedoc build"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.3.0",
"@types/jquery": "^3.3.38",
"@types/lodash": "^4.14.155",
"@types/react": "~16.9.23",
"@types/react-native": "~0.61.17",
"babel-core": "6.26.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-expo": "~8.1.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"dtslint": "^3.6.12",
"jest-expo": "^37.0.0",
"jquery": "^3.5.1",
"npm-run-all": "^4.1.5",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
"react-native-elements": "^2.0.2",
"react-native-web": "~0.11.7",
"rollup": "^2.17.1",
"rollup-plugin-babel": "3.0.7",
"typedoc": "^0.17.7",
"typescript": "^3.9.5",
"utility-types": "^3.10.0"
},
"jest": {
"testTimeout": 50000,
"projects": [
{
"preset": "jest-expo/web",
"moduleFileExtensions": [
"js",
"json",
"node",
"ts",
"tsx"
],
"testMatch": [
"<rootDir>/../**/__tests__/*spec.web.*s*",
"<rootDir>/../**/__tests__/*universal.ts"
]
},
{
"preset": "jest-expo/ios",
"testMatch": [
"<rootDir>/../**/__tests__/*universal.ts"
]
},
{
"preset": "jest-expo/android",
"testMatch": [
"<rootDir>/../**/__tests__/*universal.ts"
]
},
{
"preset": "jest-expo/node",
"testMatch": [
"<rootDir>/../**/__tests__/*universal.ts"
]
}
]
}
}