-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.26 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
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
{
"name": "carousel",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android && npm run jsonServer",
"ios": "react-native run-ios && npm run jsonServer",
"start": "react-native start",
"generateData": "node fakeGenerator.js",
"jsonServer": "json-server --watch db.json",
"test": "jest",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"prettier": "prettier --loglevel warn --write \"src/**/*.{ts,tsx,js}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"faker": "^5.5.3",
"number-to-words": "^1.2.4",
"react": "17.0.1",
"react-native": "0.64.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/faker": "^5.5.6",
"@types/jest": "^26.0.23",
"@types/number-to-words": "^1.2.1",
"@types/react-native": "^0.64.5",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.26.1",
"@typescript-eslint/parser": "^3.10.1",
"@typescript-eslint/typescript-estree": "^3.10.1",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"json-server": "^0.16.3",
"lint-staged": "^11.0.0",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.3.1",
"react-test-renderer": "17.0.1",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}