-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.41 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
{
"name": "react-nonav",
"version": "2.1.0",
"description": "React Native declarative navigation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:tpucci/react-nonav.git",
"author": "Thomas Pucci",
"license": "MIT",
"private": false,
"keywords": [
"react-native",
"navigation",
"declarative"
],
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-reanimated": "^1.1.0",
"rxjs": "^6.5.2"
},
"scripts": {
"build": "tsdx build",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"predoc:build": "cd example && yarn && cd ..",
"doc:build": "docz build",
"doc:dev": "docz dev",
"release": "release-it",
"test:ci": "yarn test:lint && yarn test:unit:ci && yarn test:type",
"test:lint": "eslint src/**/*.ts{,x}",
"test:type": "tsc --noEmit",
"test:unit:ci": "jest --runInBand",
"test:unit": "jest",
"test": "yarn test:lint && yarn test:unit && yarn test:type"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@release-it/conventional-changelog": "^1.0.2",
"@types/jest": "^24.0.11",
"@types/react-native": "^0.60.0",
"@types/react-test-renderer": "^16.8.1",
"@types/recompose": "^0.30.6",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"babel-jest": "^24.7.0",
"conventional-changelog-cz-emoji": "^2.0.0",
"coveralls": "^3.0.4",
"cz-emoji": "^1.1.2",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.7.0",
"metro-react-native-babel-preset": "^0.57.0",
"prettier": "^1.16.4",
"react": "16.12.0",
"react-dom": "16.9.0",
"react-github-btn": "^1.0.5",
"react-native": "0.59.9",
"react-native-reanimated": "^1.1.0",
"react-native-web": "^0.11.4",
"react-test-renderer": "^16.8.6",
"release-it": "^12.0.1",
"tsdx": "^0.8.0",
"typescript": "^3.4.3"
},
"resolutions": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
}
},
"dependencies": {
"recompose": "^0.30.0",
"rxjs": "^6.4.0"
}
}