-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
98 lines (98 loc) · 3.73 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
96
97
98
{
"name": "document-viewer",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build:docviewhelper": "nx build docviewhelper",
"build:ngx-doc-viewer": "nx build ngx-doc-viewer --prod",
"build:react-documents": "rimraf ./dist/packages/react-documents && nx build react-documents",
"publish:docviewhelper": "npm run build:docviewhelper && npm publish ./dist/packages/docviewhelper --tag latest",
"publish:react-documents": "npm run build:react-documents && npm publish ./dist/packages/react-documents --tag latest",
"publish:react-documents:next": "npm run build:react-documents && npm publish ./dist/packages/react-documents --tag next",
"publish:ngx-doc-viewer": "npm run build:ngx-doc-viewer && npm publish ./dist/packages/ngx-doc-viewer --tag latest",
"publish:ngx-doc-viewer:next": "npm run build:ngx-doc-viewer && npm publish ./dist/packages/ngx-doc-viewer --tag next",
"start:demo:angular": "nx serve demo-angular --port=4200",
"start:demo:react": "nx serve demo-react --port=4201",
"deploy:demo:angular": "firebase use angular-doc-viewer && firebase deploy --only hosting:demo-angular",
"deploy:demo:react": "firebase use angular-doc-viewer && firebase deploy --only hosting:demo-react"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "16.2.9",
"@angular-devkit/schematics": "16.2.9",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/compiler-cli": "16.2.12",
"@angular/language-service": "16.2.12",
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@nrwl/js": "17.0.3",
"@nx/angular": "17.0.3",
"@nx/cypress": "17.0.3",
"@nx/eslint": "17.0.3",
"@nx/eslint-plugin": "17.0.3",
"@nx/jest": "17.0.3",
"@nx/js": "17.0.3",
"@nx/react": "17.0.3",
"@nx/rollup": "^17.0.3",
"@nx/web": "17.0.3",
"@nx/workspace": "17.0.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@schematics/angular": "16.2.9",
"@svgr/webpack": "^6.1.2",
"@testing-library/react": "14.0.0",
"@types/jest": "29.4.4",
"@types/node": "18.14.2",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.9",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "29.4.3",
"cypress": "^12.2.0",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.1.2",
"ng-packagr": "16.2.3",
"nx": "17.0.3",
"postcss": "8.4.21",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.6.2",
"react-refresh": "^0.10.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"url-loader": "^4.1.1"
},
"dependencies": {
"@angular-devkit/architect": "0.1602.9",
"@angular-devkit/core": "16.2.9",
"@angular/animations": "16.2.12",
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"core-js": "^3.6.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-router-dom": "6.11.2",
"regenerator-runtime": "0.13.7",
"rxjs": "7.8.1",
"tslib": "^2.3.0",
"zone.js": "0.13.3"
}
}