-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.14 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 3.14 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
68
69
70
71
72
{
"name": "core",
"version": "0.0.0",
"description": "Core packages for @native-html ecosystem.",
"author": "Jules Sam. Randolph <jules.sam.randolph@gmail.com> (https://github.com/jsamr)",
"license": "MIT",
"homepage": "https://github.com/native-html/render#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:native-html/render.git"
},
"private": true,
"scripts": {
"build:all": "yarn build:css-processor && yarn build:transient-render-engine && yarn build:render && yarn workspace @doc/pages build && yarn workspace @doc/mdx-gen-cli build && yarn workspace website build-docs && yarn workspace website build",
"build:css-processor": "yarn workspace @native-html/css-processor build",
"build:transient-render-engine": "yarn workspace @native-html/transient-render-engine build",
"build:render": "yarn workspace @native-html/render build",
"test:css-processor": "yarn workspace @native-html/css-processor test",
"test:css-processor:ts": "yarn workspace @native-html/css-processor test:ts",
"test:css-processor:lint": "yarn workspace @native-html/css-processor test:lint",
"test:css-processor:jest": "yarn workspace @native-html/css-processor test:jest",
"test:transient-render-engine": "yarn workspace @native-html/transient-render-engine test",
"test:transient-render-engine:ts": "yarn workspace @native-html/transient-render-engine test:ts",
"test:transient-render-engine:lint": "yarn workspace @native-html/transient-render-engine test:lint",
"test:transient-render-engine:jest": "yarn workspace @native-html/transient-render-engine test:jest",
"test:transient-render-engine:perf": "yarn workspace performance-testing benchmark",
"test:render": "yarn workspace @native-html/render test",
"test:render:ts": "yarn workspace @native-html/render test:ts",
"test:render:lint": "yarn workspace @native-html/render test:lint",
"test:render:jest": "yarn workspace @native-html/render test:jest",
"release": "lerna publish",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.28.4",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@lerna-lite/cli": "^4.4.1",
"@lerna-lite/publish": "^4.4.1",
"@react-native/eslint-config": "^0.82.1",
"@tsconfig/react-native": "^3.0.7",
"commitlint": "^20.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^5.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"typescript": "^5.4.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/*",
"apps/*",
"doc-tools/*"
],
"packageManager": "yarn@4.5.0"
}