-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.13 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.13 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "alpha-components",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"build-docs": "npm run lint-all && npm run test-all && nx build docs",
"test": "nx test",
"test-all": "nx run-many --all --target=test",
"lint": "nx workspace-lint && nx lint",
"lint-all": "nx run-many --all --target=lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"build-all": "nx run-many --target=build --all",
"pre-publish": "node tools/pre-publish",
"pub-core": "npm publish ./publish/core --access public",
"pub-react": "npm publish ./publish/react --access public",
"pub-angular": "npm publish ./publish/angular --access public",
"pub-all": "npm run pub-core && npm run pub-react && npm run pub-angular",
"pub": "npm run lint-all && npm run test-all && npm run build-all && npm run pre-publish && npm run pub-all"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.0.0",
"@angular/common": "^11.0.0",
"@angular/compiler": "^11.0.0",
"@angular/core": "^11.0.0",
"@angular/forms": "^11.0.0",
"@angular/platform-browser": "^11.0.0",
"@angular/platform-browser-dynamic": "^11.0.0",
"@angular/router": "^11.0.0",
"@nrwl/node": "^11.5.1",
"color-convert": "^2.0.1",
"color-interfaces": "^0.1.25",
"core-js": "^3.6.5",
"document-register-element": "1.13.1",
"jsx-to-string": "^1.4.0",
"prism-themes": "^1.6.0",
"prismjs": "^1.23.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-element-to-jsx-string": "^14.3.2",
"react-prism": "^4.3.2",
"react-router-dom": "5.2.0",
"react-router-hash-link": "^2.4.0",
"rxjs": "~6.6.3",
"styled-components": "^5.2.1",
"tslib": "^2.0.0",
"use-color-scheme": "^1.1.1",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.1",
"@angular-eslint/eslint-plugin": "^2.0.2",
"@angular-eslint/eslint-plugin-template": "^2.0.2",
"@angular-eslint/template-parser": "^2.0.2",
"@angular/compiler-cli": "^11.0.0",
"@angular/language-service": "^11.0.0",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@nrwl/angular": "^11.2.6",
"@nrwl/cli": "11.2.6",
"@nrwl/cypress": "11.2.6",
"@nrwl/eslint-plugin-nx": "11.2.6",
"@nrwl/jest": "11.2.6",
"@nrwl/linter": "11.2.6",
"@nrwl/react": "^11.2.6",
"@nrwl/tao": "11.2.6",
"@nrwl/web": "11.2.6",
"@nrwl/workspace": "11.2.6",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "11.1.2",
"@types/jest": "26.0.8",
"@types/node": "12.12.38",
"@types/react": "16.9.56",
"@types/react-dom": "16.9.9",
"@types/react-router-dom": "5.1.6",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"babel-jest": "26.2.2",
"cypress": "^6.0.1",
"dotenv": "6.2.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"fs-extra": "^7.0.1",
"jest": "26.2.2",
"jest-preset-angular": "8.3.2",
"ng-packagr": "^11.0.0",
"prettier": "2.2.1",
"ts-jest": "26.4.0",
"ts-node": "~9.1.1",
"typescript": "~4.0.3"
}
}