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
93 lines (93 loc) · 2.65 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react2angular",
"version": "4.0.5",
"description": "The easiest way to embed React components in Angular 1 apps!",
"main": "index.js",
"main:esnext": "index.es2015.js",
"typings": "index.d.ts",
"scripts": {
"build": "webpack --env dev && webpack --env build --display-modules",
"dev": "webpack --progress --colors --watch --env dev"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/coatue-oss/react2angular.git"
},
"keywords": [
"react",
"angular",
"interop",
"ngreact",
"combine",
"together",
"embed"
],
"author": "Boris Cherny <boris@performancejs.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coatue-oss/react2angular/issues"
},
"homepage": "https://github.com/coatue-oss/react2angular#readme",
"peerDependencies": {
"@types/angular": ">=1.5",
"@types/prop-types": ">=15",
"@types/react": ">=16",
"@types/react-dom": ">=16",
"prop-types": ">=15",
"react": ">=15",
"react-dom": ">=15"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/angular": "^1.6.53",
"@types/angular-mocks": "^1.7.0",
"@types/jasmine": "^3.3.8",
"@types/jquery": "^3.3.29",
"@types/prop-types": "^15.5.8",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"angular-mocks": "^1.7.6",
"angular-resource": "^1.7.6",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^7.0.0-beta.3",
"babel-register": "^7.0.0-beta.3",
"browserify": "^16.2.3",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"karma": "^4.0.0",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.3.0",
"lodash-webpack-plugin": "^0.11.5",
"ngimport": "^1.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollupify": "^0.5.1",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.3.3333",
"watchify": "^3.11.0",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"yargs": "^10.0.3"
},
"dependencies": {
"@types/lodash.frompairs": "^4.0.3",
"angular": ">=1.5",
"lodash.frompairs": "^4.0.1",
"ngcomponent": "^4.1.0"
}
}