-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.58 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
{
"name": "@shoutem/theme",
"version": "1.0.2",
"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": ">=19.0.0",
"react-native": ">=0.78.0",
"prop-types": ">=15.7.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@shoutem/eslint-config-react": "~1.0.6",
"babel-eslint": "10.1.0",
"babel-jest": "25.5.1",
"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": "^29.6.3",
"@react-native/babel-preset": "0.78.0",
"prettier": "1.19.1"
},
"jest": {
"preset": "react-native"
},
"license": "BSD-3-Clause",
"maintainers": [
{
"email": "slavko@shoutem.com",
"name": "sstimac"
},
{
"email": "tomislav.arambasic@shoutem.com",
"name": "tomislav-arambasic"
}
],
"eslintConfig": {
"extends": "@shoutem/react",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"singleQuote": true,
"trailingComma": "all"
}
}