-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "slider-component",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"test": "echo test",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "eslint --fix '**/*.{ts,tsx}'"
},
"private": true,
"dependencies": {
"react": "18.2.0",
"react-native": "0.70.6",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nrwl/cli": "^15.3.0",
"@nrwl/eslint-plugin-nx": "^15.3.0",
"@nrwl/jest": "^15.3.0",
"@nrwl/js": "^15.3.0",
"@nrwl/react-native": "15.3.0",
"@nrwl/web": "15.3.0",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/cli": "9.3.2",
"@react-native-community/cli-platform-android": "9.3.1",
"@react-native-community/cli-platform-ios": "9.3.0",
"@testing-library/jest-native": "5.3.0",
"@testing-library/react-native": "11.5.0",
"@types/jest": "28.1.1",
"@types/node": "16.11.7",
"@types/react": "18.0.25",
"@types/react-native": "0.70.6",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"babel-jest": "28.1.1",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-airbnb": "^0.0.1-security",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-react-native": "18.0.0",
"lint-staged": "^13.1.0",
"metro": "0.73.3",
"metro-babel-register": "0.73.3",
"metro-react-native-babel-preset": "0.73.3",
"metro-react-native-babel-transformer": "0.73.3",
"metro-resolver": "0.73.3",
"prettier": "^2.6.2",
"react-native-config": "1.4.11",
"react-native-svg": "13.6.0",
"react-native-svg-transformer": "1.0.0",
"react-test-renderer": "18.2.0",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "^4.9.4"
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}