-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.86 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.86 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
{
"name": "@filestack/angular",
"version": "3.0.0",
"description": "Angular module for filestack-js",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:umd": "rollup -c",
"build": "ng build filestack-angular --configuration production",
"test": "ng test filestack-angular --watch=false",
"test:watch": "ng test filestack-angular",
"lint": "ng lint",
"e2e": "ng e2e",
"release": "ng test filestack-angular --watch=false && ng build filestack-angular --configuration production && standard-version",
"publishS3": "npx webpack",
"publish": "cd dist/filestack-angular/ && npm publish",
"publish:umd": "npm run build:umd && npm run publishS3"
},
"dependencies": {
"@angular/animations": "^18.2.4",
"@angular/cdk": "^18.2.9",
"@angular/common": "^18.2.4",
"@angular/compiler": "^18.2.4",
"@angular/core": "^18.2.4",
"@angular/forms": "^18.2.4",
"@angular/material": "^18.2.9",
"@angular/platform-browser": "^18.2.4",
"@angular/platform-browser-dynamic": "^18.2.4",
"filestack-js": "3.35.4-beta.1",
"ngx-highlightjs": "^12.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.9",
"@angular-devkit/core": "^18.2.4",
"@angular-eslint/builder": "^18.4.0",
"@angular-eslint/eslint-plugin": "^18.4.0",
"@angular-eslint/eslint-plugin-template": "^18.4.0",
"@angular-eslint/schematics": "^18.4.0",
"@angular-eslint/template-parser": "^18.4.0",
"@angular/cli": "^18.2.4",
"@angular/compiler-cli": "^18.2.4",
"@angular/language-service": "^18.2.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^18.2.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"ts-node": "~8.10.2",
"typescript": "~5.4.5",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-s3-plugin": "^1.2.0-rc.0"
},
"repository": {
"type": "git",
"url": "https://github.com/filestack/filestack-angular.git"
},
"overrides": {
"semver": "~7.5.2",
"http-proxy-middleware": "3.0.3",
"esbuild": "0.25.0",
"serialize-javascript": "^6.0.2"
}
}