-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
{
"name": "typescript-example",
"version": "1.0.0",
"description": "groove",
"main": "index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"type-check": "tsc --noEmit index.ts",
"type-check:watch": "npm run type-check --watch",
"start": "babel-node -x \".ts\" index.ts",
"tsc": "tsc"
},
"dependencies": {
"ts-node": "^10.7.0",
"react-native": "0.67.4",
"react": "17.0.2",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.1",
"@react-navigation/stack": "^6.2.1",
"@react-navigation/material-top-tabs": "^6.2.1",
"@react-navigation/bottom-tabs": "^6.3.1",
"react-redux": "7.1.3",
"redux": "^4.1.2",
"redux-dynamic-modules": "^5.2.3",
"redux-dynamic-modules-core": "^5.2.3",
"redux-dynamic-modules-saga": "^5.2.3",
"redux-saga": "^1.1.3",
"@react-native-community/async-storage": "^1.12.1"
},
"resolutions": {
"@types/react": "^17"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/react-native": "^0.67.4",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"typescript": "^4.6.3",
"@react-native-community/eslint-config": "^3.0.1",
"eslint": "^8.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint-plugin-import": "^2.26.0",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khoale-groove/typescript-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/khoale-groove/typescript-example/issues"
},
"homepage": "https://github.com/khoale-groove/typescript-example#readme"
}