-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
83 lines (83 loc) · 1.98 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
78
79
80
81
82
83
{
"name": "@shoutem/theme",
"version": "0.14.0",
"main": "index.js",
"description": "Style your components in one place.",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest"
},
"dependencies": {
"auto-bind": "4.0.0",
"hoist-non-react-statics": "1.2.0",
"lodash": "4.17.21",
"tinycolor2": "1.4.2"
},
"peerDependencies": {
"react": ">=16.3.1",
"react-native": ">=0.63.2",
"prop-types": ">=15.5.10"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@shoutem/eslint-config-react": "~1.0.6",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.6",
"babel-eslint": "10.1.0",
"babel-jest": "25.5.1",
"enzyme": "3.11.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native": "3.11.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"jest": "27.4.7",
"jest-enzyme": "7.1.2",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"metro-react-native-babel-preset": "0.63.0",
"prettier": "1.19.1"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"./test-utils/setup.js"
]
},
"license": "BSD-3-Clause",
"maintainers": [
{
"email": "[email protected]",
"name": "ltatarev"
},
{
"email": "[email protected]",
"name": "sstimac"
},
{
"email": "[email protected]",
"name": "tomislav-arambasic"
},
{
"email": "[email protected]",
"name": "Definitely-Not-Vlad"
}
],
"eslintConfig": {
"extends": "@shoutem/react",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"singleQuote": true,
"trailingComma": "all"
}
}