-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "my-live",
"version": "0.0.1",
"private": true,
"scripts": {
"preinstall": "rm -rf typings",
"postinstall": "node node_modules/typings/dist/bin.js install",
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"prebuild": "rm -rf build",
"build": "tsc",
"watch": "tsc --watch"
},
"dependencies": {
"@types/react-navigation": "^1.0.7",
"react": "16.0.0-alpha.12",
"react-native": "^0.45.1",
"react-native-vector-icons": "^4.2.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"react-native-pili": "^2.0.1",
"thunk": "^0.0.1"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.0.0",
"jest": "20.0.4",
"react-test-renderer": "16.0.0-alpha.12",
"tslint": "^5.3.2",
"typescript": "^2.3.3",
"typings": "^2.1.1"
},
"jest": {
"preset": "react-native"
},
"pre-commit": {
"run": [
"lint-ts",
"compile-ts"
]
}
}