-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.05 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
{
"name": "plugins-project",
"private": true,
"scripts": {
"start": "yarn workspace example start",
"android": "yarn workspace example android",
"ios": "yarn workspace example ios",
"build:table": "yarn workspace @native-html/table-plugin build",
"build:heuristic-table": "yarn workspace @native-html/heuristic-table-plugin build",
"build:iframe": "yarn workspace @native-html/iframe-plugin build",
"build:core": "yarn workspace @native-html/plugins-core build",
"test:table": "yarn workspace @native-html/table-plugin test",
"test:table:jest": "yarn workspace @native-html/table-plugin test:jest",
"test:heuristic-table": "yarn workspace @native-html/heuristic-table-plugin test",
"test:heuristic-table:jest": "yarn workspace @native-html/heuristic-table-plugin test:jest",
"test:iframe": "yarn workspace @native-html/iframe-plugin test",
"test:iframe:jest": "yarn workspace @native-html/iframe-plugin test:jest",
"test:core": "yarn workspace @native-html/plugins-core test",
"test:core:jest": "yarn workspace @native-html/plugins-core test:jest",
"prepare": "husky",
"release": "lerna publish"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@formidable-webview/eslint-config-webjs": "^1.0.0",
"@lerna-lite/cli": "^4.4.1",
"@lerna-lite/publish": "^4.4.1",
"@react-native-community/eslint-config": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-compat": "^7.0.0",
"eslint-plugin-tsdoc": "^0.5.2",
"husky": "^9.1.7",
"prettier": "^3.8.1"
},
"resolutions": {
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-webview": "13.16.0"
},
"author": "Jules Sam. Randolph <jules.sam.randolph@gmail.com> (https://github.com/jsamr)",
"license": "MIT",
"workspaces": [
"packages/*",
"example"
],
"packageManager": "yarn@4.12.0"
}