forked from native-html/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.99 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
{
"name": "core",
"version": "0.0.0",
"description": "Core packages for react-native-render-html",
"author": "Jules Sam. Randolph <[email protected]> (https://github.com/jsamr)",
"license": "MIT",
"homepage": "https://github.com/native-html/core#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:native-html/core.git"
},
"private": true,
"scripts": {
"build:css-processor": "yarn workspace @native-html/css-processor build",
"build:transient-render-engine": "yarn workspace @native-html/transient-render-engine 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",
"release:css-processor": "yarn workspace @native-html/css-processor release-it",
"release:transient-render-engine": "yarn workspace @native-html/transient-render-engine release-it",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.14.0",
"@commitlint/cli": "^12.1.2",
"@commitlint/config-conventional": "^12.1.2",
"@react-native-community/eslint-config": "^2.0.0",
"@react-native-community/eslint-plugin": "^1.1.0",
"@tsconfig/react-native": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"commitlint": "^12.1.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"typescript": "~4.2.4"
},
"resolutions": {
"@release-it/conventional-changelog": "patch:@release-it/[email protected]#patches/@release-it-conventional-changelog.patch",
"release-it": "patch:[email protected]#patches/release-it.patch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/*",
"acceptance/*"
]
}