This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
64 lines (64 loc) · 2.43 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
{
"name": "ag-grid-angular-cli-example",
"version": "31.1.0",
"description": "AG Grid Angular Example Using Angular CLI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/ag-grid-angular-cli-example.git"
},
"author": "Sean Landsman <[email protected]>",
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider ng serve --port 8080",
"build": "NODE_OPTIONS=\"--openssl-legacy-provider --max-old-space-size=8192\" ng build --aot",
"build-prod": "npm run build",
"lint": "tslint \"src/**/*.ts\"",
"test:e2e": "NODE_OPTIONS=--openssl-legacy-provider ./node_modules/.bin/ng test --watch false --browsers ChromeHeadless",
"test:watch": "NODE_OPTIONS=--openssl-legacy-provider ./node_modules/.bin/ng test --watch true --browsers ChromeHeadless"
},
"private": true,
"dependencies": {
"@ag-grid-community/angular": "~31.1.0",
"@ag-grid-community/core": "~31.1.0",
"@ag-grid-community/client-side-row-model": "~31.1.0",
"@ag-grid-enterprise/core": "~31.1.0",
"@ag-grid-enterprise/menu": "~31.1.0",
"@ag-grid-enterprise/side-bar": "~31.1.0",
"@ag-grid-enterprise/column-tool-panel": "~31.1.0",
"@ag-grid-enterprise/filter-tool-panel": "~31.1.0",
"@ag-grid-enterprise/row-grouping": "~31.1.0",
"@ag-grid-enterprise/set-filter": "~31.1.0",
"@ag-grid-enterprise/status-bar": "~31.1.0",
"@ag-grid-enterprise/range-selection": "~31.1.0",
"@ag-grid-enterprise/charts": "~31.1.0",
"@ag-grid-community/styles": "~31.1.0",
"@angular/animations": "^14.3.0",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/forms": "^14.3.0",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"bootstrap": "4.5.0",
"rxjs": "~6.6.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.12",
"@angular/cli": "^14.2.12",
"@angular/compiler-cli": "^14.3.0",
"@testing-library/angular": "^12.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jasmine": "~3.8.0",
"@types/node": "18.19.10",
"jasmine-core": "~3.8.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "~4.7.4"
}
}