-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "smart-table-widget",
"version": "2.0.2",
"scripts": {
"start": "concurrently --kill-others \"npm run start:api\" \"npm run start:ng\"",
"start:api": "cd projects/example-api && nodemon api.js",
"start:ng": "ng serve --proxy-config proxy.conf.json",
"copy": "copyfiles README.md CHANGELOG.md CONTRIBUTING.md LICENSE *.png dist/smart-table",
"build": "ng build && npm run copy",
"test": "ng test",
"lint": "ng lint",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@acpaas-ui/ngx-flyout": "^6.0.0-beta.0",
"@acpaas-ui/ngx-forms": "^6.0.0-beta.0",
"@acpaas-ui/ngx-icon": "^6.0.0-beta.0",
"@acpaas-ui/ngx-localstorage": "^5.0.0",
"@acpaas-ui/ngx-pagination": "^6.0.0-beta.0",
"@acpaas-ui/ngx-table": "^6.0.0-beta.0",
"@angular/cdk": "^15.2.4",
"file-saver": "^2.0.2",
"lodash.unionby": "^4.8.0",
"query-string": "^6.8.3",
"xlsx": "^0.17.0"
},
"devDependencies": {
"@a-ui/core": "^6.3.0",
"@a-ui/flexboxgrid": "^3.0.0",
"@angular-devkit/build-angular": "^15.2.8",
"@angular-redux/store": "^10.0.0",
"@angular/animations": "^15.2.4",
"@angular/cli": "^15.2.4",
"@angular/common": "^15.2.4",
"@angular/compiler": "^15.2.4",
"@angular/compiler-cli": "^15.2.4",
"@angular/core": "^15.2.4",
"@angular/forms": "^15.2.4",
"@angular/language-service": "^15.2.4",
"@angular/platform-browser": "^15.2.4",
"@angular/platform-browser-dynamic": "^15.2.4",
"@angular/router": "^15.2.4",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@types/sinon": "^7.5.2",
"codelyzer": "^6.0.2",
"concurrently": "^5.3.0",
"copyfiles": "^2.1.0",
"core-js": "^2.5.4",
"express": "^4.17.1",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "^0.9.2",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~6.4.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^15.2.2",
"nodemon": "^1.19.1",
"protractor": "~7.0.0",
"redux": "4.0.1",
"rxjs": "~7.8.0",
"sinon": "^7.5.0",
"ts-node": "~7.0.0",
"tslib": "^2.5.0",
"tslint": "~5.11.0",
"typescript": "~4.9.2",
"zone.js": "~0.13.0"
},
"overrides": {
"@angular-redux/store": {
"@angular/core": "^15.2.4",
"rxjs": "~7.8.0"
}
}
}