forked from coatue-oss/react2angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
{
"name": "react18-to-angularjs",
"version": "1.1.1",
"description": "The easiest way to embed React 18 components in AngularJS apps!",
"main": "./dist/index.js",
"typings": "./types/index.d.ts",
"scripts": {
"build": "swc ./src/index.tsx -s true -o ./dist/index.js",
"test": "jest --config jest.config.js",
"test-watch": "jest --watch --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:karesztrk/react-to-angularjs.git"
},
"keywords": [
"react",
"react18",
"angular",
"angularjs",
"interop",
"ngreact",
"combine",
"together",
"embed"
],
"author": "Karoly Torok <torok.karoly.krisztian@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/karesztrk/react-to-angularjs/issues"
},
"homepage": "https://github.com/karesztrk/react-to-angularjs#readme",
"peerDependencies": {
"@types/angular": ">=1.5",
"@types/react": ">=18",
"@types/react-dom": ">=18",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.198",
"@swc/jest": "^0.2.21",
"@types/angular": "^1.8.4",
"@types/angular-mocks": "^1.7.1",
"@types/jest": "^28.1.1",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"angular": "^1.8.3",
"angular-mocks": "^1.8.3",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-extended": "^2.0.0",
"ngcomponent": "^4.1.0",
"ngimport": "^1.0.0",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"dependencies": {
"angular": ">=1.5",
"ngcomponent": "^4.1.0"
},
"files": [
"dist",
"types"
]
}