forked from infinitered/ChainReactApp2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.86 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
{
"name": "ChainReactApp2018",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "NODE_ENV=test TZ=America/Los_Angeles jest",
"compile": "tsc --noEmit -p . --pretty",
"format": "npm-run-all format:*",
"format:js": "prettier --write {.,**}/*.js",
"format:json": "prettier --write {.,**}/*.json",
"format:md": "prettier --write {.,**}/*.md",
"format:ts": "prettier --write {.,**}/*.{ts,tsx} && tslint --fix -p .",
"lint": "npm-run-all lint:*",
"lint:ts": "tslint -p .",
"postinstall": "solidarity",
"precommit": "lint-staged",
"prepare": "patch-package",
"storybook": "storybook start -p 9001 --skip-packager"
},
"dependencies": {
"@mapbox/react-native-mapbox-gl": "6.1.1",
"apisauce": "^0.14.3",
"apollo-boost": "^0.1.9",
"date-fns": "^1.29.0",
"graphql": "^0.13.2",
"lottie-react-native": "2.3.2",
"mobx": "^4.1.0",
"mobx-react": "^5.0.0",
"mobx-state-tree": "^2.0.3",
"ramda": "^0.25.0",
"react": "^16.3.0-alpha.1",
"react-apollo": "^2.1.5",
"react-native": "0.55.4",
"react-native-i18n": "^2.0.12",
"react-native-keychain": "3.0.0-rc.3",
"react-native-splash-screen": "3.0.6",
"react-navigation": "^2.0.4",
"react-viro": "./react-viro-2.7.3.tgz",
"reactotron-mst": "2.0.0-beta.1",
"reactotron-react-native": "2.0.0-beta.1",
"validate.js": "^0.12.0"
},
"devDependencies": {
"@storybook/addon-storyshots": "^3.3.15",
"@storybook/react-native": "^3.3.15",
"@types/jest": "^22.2.0",
"@types/ramda": "^0.25.20",
"@types/react": "^16.0.40",
"@types/react-native": "^0.52.18",
"@types/react-navigation": "^2.0.4",
"@types/react-test-renderer": "^16.0.1",
"@types/validate.js": "0.11.0",
"babel-jest": "22.4.3",
"babel-plugin-transform-inline-environment-variables": "^0.3.0",
"babel-preset-react-native": "4.0.0",
"husky": "^0.14.3",
"jest": "22.4.3",
"jest-preset-ignite": "^0.5.0",
"lint-staged": "^7.0.0",
"npm-run-all": "^4.1.2",
"patch-package": "^5.1.1",
"postinstall-prepare": "^1.0.1",
"prettier": "^1.11.1",
"react-dom": "^16.2.0",
"react-native-typescript-transformer": "^1.2.3",
"react-powerplug": "^0.1.5",
"react-test-renderer": "^16.3.0-alpha.1",
"solidarity": "^2.1.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"typescript": "2.7.2"
},
"jest": {
"preset": "jest-preset-ignite"
},
"rnpm": {
"assets": [
"./src/theme/fonts"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}