-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.template.web.json
112 lines (112 loc) · 3.04 KB
/
package.template.web.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@shoutem/platform",
"version": "15.0.3",
"scripts": {
"build": "node scripts/build",
"bundle": "node scripts/bundle",
"configure": "node scripts/configure",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"list-dependencies": "node scripts/platform-dependencies",
"postinstall": "node scripts/postinstall",
"setup": "cd scripts && yarn install",
"build-web": "NODE_ENV=production node web/esbuild.config.mjs",
"run-web": "NODE_ENV=development node web/esbuild.config.dev.mjs"
},
"dependencies": {
"auto-bind": "4.0.0",
"es6-symbol": "3.1.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"prop-types": "15.7.1",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-native-web": "0.19.9",
"react-native-web-webview": "1.0.2",
"@babel/plugin-proposal-export-namespace-from": "7.18.9",
"react-redux": "7.2.6",
"redux": "3.6.0",
"redux-action-buffer": "1.0.1",
"redux-api-middleware": "2.0.1",
"redux-logger": "2.6.1",
"redux-persist": "4.10.2",
"redux-thunk": "2.0.1",
"whatwg-fetch": "1.0.0"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/plugin-proposal-decorators": "7.20.13",
"@babel/preset-env": "7.20.2",
"@babel/preset-flow": "7.21.4",
"@babel/runtime": "7.20.13",
"@react-native/babel-preset": "0.73.21",
"@react-native/metro-config": "0.73.5",
"@shoutem/build-tools": "file:scripts/helpers",
"@shoutem/eslint-config-react-native": "~1.0.2",
"babel-eslint": "10.1.0",
"babel-jest": "29.6.3",
"ajv": "8.8.2",
"babel-plugin-jest-hoist": "24.9.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": "26.6.3",
"jetifier": "1.6.8",
"patch-package": "6.4.7",
"prettier": "1.19.1",
"react-native-asset": "2.1.1",
"react-test-renderer": "17.0.2",
"cssnano": "^7.0.4",
"sass": "^1.77.7",
"esbuild": "0.23.1",
"esbuild-sass-plugin": "3.3.1",
"esbuild-plugin-svgr": "2.1.0",
"mustache": "4.2.0",
"open": "10.1.0"
},
"eslintConfig": {
"extends": "@shoutem/react-native",
"ignorePatterns": [
"**/dist/*",
"**/node_modules/*",
"**/server.js",
"**/webpack.config*.js",
"**/test-utils/setup.js"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"react-native/no-raw-text": [
1,
{
"skip": [
"Caption",
"Heading",
"Subtitle",
"Title"
]
}
]
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "module:react-native"
},
"engines": {
"node": ">=18"
}
}