-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·60 lines (60 loc) · 1.7 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
{
"license": "MIT",
"name": "shakl",
"description": "A utility to create styled components in React Native.",
"version": "0.0.16",
"main": "lib/index.js",
"react-native": "lib/rn.js",
"types": "lib/rn.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/sonaye/shakl.git"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-react": "^7.25.9",
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.11.4",
"@exodus/eslint-config-exodus": "^1.3.1",
"@exodus/prettier": "^1.0.0",
"@testing-library/react-native": "^12.4.5",
"@tsconfig/react-native": "^3.0.5",
"@types/react": "^18.3.11",
"babel-jest": "^29.7.0",
"benchmark": "2.1.4",
"emotion": "9.2.6",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"microtime": "^3.1.1",
"prettier": "^3.3.3",
"react": "18.2.0",
"react-native": "^0.73.6",
"react-native-linear-gradient": "^2.8.3",
"react-native-reanimated": "^3.8.1",
"react-test-renderer": "18.2.0",
"rollup": "^4.13.2",
"styled-components": "6.1.8",
"typescript": "^5.6.3"
},
"scripts": {
"test:all": "yarn test && yarn test:types",
"test": "jest /test",
"test:types": "tsc -p tsconfig.test.json",
"lint": "eslint",
"coverage": "yarn test --coverage",
"postcoverage": "open -a Chrome coverage/lcov-report/index.html",
"benchmark": "jest /benchmark",
"postbenchmark": "open -a Chrome benchmark/chart/index.html",
"prebuild": "rm -rf lib",
"build": "tsc"
},
"files": [
"lib"
],
"prettier": "@exodus/prettier"
}