-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.2 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
{
"name": "demo-ngx-ol",
"version": "14.0.0",
"scripts": {
"ng": "ng",
"start": "yarn build:lib && ng serve",
"build:lib": "ng build ngx-ol --configuration production",
"build:demo": "ng build demo-ngx-ol",
"build": "yarn build:lib && yarn build:demo",
"test": "yarn build:lib && ng test",
"lint": "ng lint",
"e2e": "yarn build:lib && ng e2e",
"format": "prettier --write \"**/@(src|e2e)/**/*.ts\"",
"release": "yarn --cwd projects/ngx-ol release"
},
"private": false,
"dependencies": {
"@angular/animations": "^14.2.1",
"@angular/common": "^14.2.1",
"@angular/compiler": "^14.2.1",
"@angular/core": "^14.2.1",
"@angular/forms": "^14.2.1",
"@angular/platform-browser": "^14.2.1",
"@angular/platform-browser-dynamic": "^14.2.1",
"@angular/router": "^14.2.1",
"hammerjs": "^2.0.8",
"ol": "~7.1.0",
"rxjs": "~6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.2",
"@angular/cli": "^14.2.2",
"@angular/compiler-cli": "^14.2.1",
"@angular/language-service": "^14.2.1",
"@types/arcgis-rest-api": "^10.4.5",
"@types/jasmine": "^4.3.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@types/topojson-specification": "^1.0.2",
"jasmine-core": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^14.2.1",
"prettier": "^2.0.3",
"protractor": "~7.0.0",
"standard-version": "^7.1.0",
"ts-node": "~8.3.0",
"typescript": "~4.6.4",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"@angular-eslint/builder": "^14.0.4",
"@angular-eslint/eslint-plugin": "^14.0.4",
"@angular-eslint/eslint-plugin-template": "^14.0.4",
"@angular-eslint/schematics": "^14.0.4",
"@angular-eslint/template-parser": "^14.0.4",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0"
}
}