-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "react-native-todo-list",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "jest",
"start": "concurrently \"npm run tsc:w\" \"npm run react-native:start\"",
"react-native:start": "node node_modules/react-native/local-cli/cli.js start",
"compile": "tsc",
"tsc:w": "tsc --watch",
"run:android": "react-native run-android",
"run:android:device": "%ANDROID_HOME%/platform-tools/adb.exe reverse tcp:8081 tcp:8081 && react-native run-android"
},
"dependencies": {
"moment": "^2.20.1",
"react": "16.2.0",
"react-native": "0.52.2",
"react-native-sqlite-storage": "^3.3.4",
"react-native-vector-icons": "^4.5.0",
"react-navigation": "^1.0.0-beta.27"
},
"devDependencies": {
"@types/jest": "^22.1.1",
"@types/react": "^16.0.36",
"@types/react-native": "^0.52.7",
"@types/react-navigation": "^1.0.30",
"babel-jest": "22.1.0",
"babel-preset-react-native": "4.0.0",
"concurrently": "^3.5.1",
"jest": "22.1.4",
"react-test-renderer": "16.2.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.7.1"
},
"jest": {
"preset": "react-native",
"testRegex": "compiled/__tests__/.*"
}
}