-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 3.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "angular-react-hybrid",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:react": "yarn build:all && ng serve react-app",
"start:angular": "yarn build:all && ng serve angular-app",
"build": "ng build",
"build:reactWrapper": "ng build react-ng-wrapper && ng build angular-component-library && ng build react-wrappers",
"build:angularWrapper": "ng build react-component-library && ng build angular-wrappers",
"build:all": "yarn build:reactWrapper && yarn build:angularWrapper",
"test": "ng test",
"lint": "./node_modules/.bin/nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "./node_modules/.bin/nx affected:apps",
"affected:libs": "./node_modules/.bin/nx affected:libs",
"affected:build": "./node_modules/.bin/nx affected:build",
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
"affected:test": "./node_modules/.bin/nx affected:test",
"affected:lint": "./node_modules/.bin/nx affected:lint",
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
"affected": "./node_modules/.bin/nx affected",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
"dep-graph": "./node_modules/.bin/nx dep-graph",
"help": "./node_modules/.bin/nx help",
"nx": "nx"
},
"private": true,
"dependencies": {
"@angular/animations": "8.2.11",
"@angular/common": "8.2.11",
"@angular/compiler": "8.2.11",
"@angular/core": "8.2.11",
"@angular/forms": "8.2.11",
"@angular/platform-browser": "8.2.11",
"@angular/platform-browser-dynamic": "8.2.11",
"@angular/router": "8.2.11",
"@nrwl/angular": "8.6.0",
"core-js": "2.6.9",
"document-register-element": "1.13.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"rxjs": "6.5.3",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.12",
"@angular-devkit/build-ng-packagr": "0.803.12",
"@angular-devkit/core": "8.3.3",
"@angular/cli": "8.3.12",
"@angular/compiler-cli": "8.2.11",
"@angular/language-service": "8.2.11",
"@babel/preset-react": "7.0.0",
"@nrwl/cypress": "8.6.0",
"@nrwl/eslint-plugin-nx": "8.6.0",
"@nrwl/jest": "8.6.0",
"@nrwl/react": "8.6.0",
"@nrwl/web": "8.6.0",
"@nrwl/workspace": "8.6.0",
"@testing-library/react": "8.0.5",
"@types/jest": "24.0.9",
"@types/jquery": "3.3.6",
"@types/node": "8.9.5",
"@types/react": "16.9.1",
"@types/react-dom": "16.8.5",
"@typescript-eslint/eslint-plugin": "2.0.0-alpha.4",
"@typescript-eslint/parser": "2.0.0-alpha.4",
"codelyzer": "4.5.0",
"cypress": "3.4.0",
"dotenv": "6.2.0",
"eslint": "6.3.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "1.6.1",
"jest": "24.1.0",
"jest-preset-angular": "7.0.0",
"ng-packagr": "5.5.0",
"prettier": "1.15.2",
"ts-jest": "24.0.0",
"ts-node": "7.0.1",
"tsickle": "0.37.0",
"tslib": "1.10.0",
"tslint": "5.11.0",
"typescript": "3.5.3"
}
}