forked from CenterForOpenScience/angular-osf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.54 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.54 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
120
121
122
123
124
125
{
"name": "osf",
"version": "26.2.1",
"scripts": {
"ng": "ng",
"analyze-bundle": "ng build --configuration=analyze-bundle && source-map-explorer dist/**/*.js --no-border-checks",
"build": "ng build",
"build:ssr": "ng build --configuration=ssr",
"check:config": "node ./docker/check-config.js",
"ci:test": "jest",
"ci:test:coverage": "jest --coverage",
"docs": "./node_modules/.bin/compodoc -p tsconfig.docs.json --name 'OSF Angular Documentation' --theme 'laravel' -s",
"docs:coverage": "./node_modules/.bin/compodoc -p tsconfig.docs.json --coverageTest 0 --coverageMinimumPerFile 0",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"lint:format": "npm run lint:fix && npm run format",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ngxs:actions": "ng generate @ngxs/store:actions --name --path",
"ngxs:store": "ng generate @ngxs/store:store --name --path",
"prepare": "husky",
"start": "ng serve",
"start:docker": "npm run check:config && ng serve --host 0.0.0.0 --port 4200 --poll 2000 --configuration development",
"start:docker:local": "npm run check:config && ng serve --host 0.0.0.0 --port 4200 --poll 2000 --configuration docker",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && npm run test:display",
"test:check-coverage-thresholds": "node .github/scripts/check-coverage-thresholds.js",
"test:display": "node .github/counter/counter.test.display.js",
"watch": "ng build --watch --configuration development",
"serve:ssr:osf": "node dist/osf/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.0",
"@angular/cdk": "^19.2.1",
"@angular/common": "^19.2.0",
"@angular/compiler": "^19.2.0",
"@angular/core": "^19.2.0",
"@angular/forms": "^19.2.0",
"@angular/platform-browser": "^19.2.0",
"@angular/platform-browser-dynamic": "^19.2.0",
"@angular/platform-server": "^19.2.0",
"@angular/router": "^19.2.0",
"@angular/ssr": "^19.2.0",
"@centerforopenscience/markdown-it-atrules": "^0.1.1",
"@citation-js/core": "^0.7.18",
"@citation-js/plugin-csl": "^0.7.18",
"@fortawesome/fontawesome-free": "^6.7.2",
"@mdit/plugin-img-size": "0.22.3",
"@newrelic/browser-agent": "^1.301.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"@ngxs/store": "^19.0.0",
"@primeng/themes": "^19.0.9",
"@sentry/angular": "^10.10.0",
"@traptitech/markdown-it-katex": "^3.6.0",
"ace-builds": "^1.42.0",
"angular-google-tag-manager": "^1.11.0",
"cedar-artifact-viewer": "^0.9.5",
"cedar-embeddable-editor": "1.2.2",
"chart.js": "^4.4.9",
"diff": "^8.0.2",
"express": "^4.18.2",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-toc-done-right": "^4.2.0",
"markdown-it-video": "^0.6.3",
"ngx-captcha": "^13.0.0",
"ngx-cookie-service": "^19.1.2",
"ngx-markdown-editor": "^5.3.4",
"primeflex": "^4.0.0",
"primeicons": "^7.0.0",
"primeng": "^19.0.9",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.8",
"@angular-eslint/eslint-plugin": "^19.1.0",
"@angular-eslint/eslint-plugin-template": "^19.1.0",
"@angular-eslint/template-parser": "^19.1.0",
"@angular/cli": "^19.2.0",
"@angular/compiler-cli": "^19.2.0",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@compodoc/compodoc": "^1.1.26",
"@types/express": "^4.17.17",
"@types/gapi": "^0.0.47",
"@types/gapi.auth2": "^0.0.61",
"@types/jest": "^29.5.14",
"@types/markdown-it": "^14.1.2",
"@types/node": "^18.18.0",
"angular-eslint": "19.1.0",
"angularx-qrcode": "^19.0.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-preset-angular": "^14.5.5",
"lint-staged": "^15.4.3",
"ng-mocks": "^14.13.4",
"prettier": "3.5.2",
"source-map-explorer": "^2.5.3",
"structured-clone": "^0.2.2",
"ts-jest": "^29.3.2",
"typescript": "~5.7.2",
"typescript-eslint": "8.23.0"
},
"lint-staged": {
"**/*.{ts,html,scss}": [
"prettier --write",
"eslint --fix"
]
},
"volta": {
"node": "22.13.1",
"npm": "10.9.0"
}
}