-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
99 lines (99 loc) · 3.92 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "open-genes-frontend",
"version": "1.2.1",
"scripts": {
"spriteset-general": "svg-sprite --symbol --dest=src/assets/images/icons/sprites src/assets/images/icons/source/general/*.svg --symbol-sprite=general.sprite.svg",
"spriteset-no-content": "svg-sprite --symbol --dest=src/assets/images/icons/sprites src/assets/images/icons/source/no-content/*.svg --symbol-sprite=no-content.sprite.svg",
"sprites": "npm run spriteset-general & npm run spriteset-no-content",
"ng": "ng",
"start": "npm run sprites && ng serve --configuration=develop",
"start-dev": "npm run sprites && ng serve --configuration=develop",
"start-demo": "npm run sprites && ng serve --configuration=demo",
"build": "npm run sprites && ng build",
"build-dev": "npm run sprites && ng build --configuration=develop",
"build-demo": "npm run sprites && ng build --configuration=demo",
"build-prod": "npm run sprites && ng build --configuration production",
"test": "ng test",
"lint": "npx ng lint frontend --fix",
"e2e": "ng e2e",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006",
"build-storybook": "npm run docs:json && build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"versioning": "node .utils/versioning.js",
"version-and-changelog": "node .utils/update-version-and-changelog.js",
"update-changelog": "node .utils/generate-changelog.js"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.0.1",
"@angular/cdk": "^13.0.1",
"@angular/common": "~13.0.1",
"@angular/compiler": "~13.0.1",
"@angular/core": "~13.0.1",
"@angular/forms": "~13.0.1",
"@angular/material": "^13.0.1",
"@angular/platform-browser": "~13.0.1",
"@angular/platform-browser-dynamic": "~13.0.1",
"@angular/router": "~13.0.1",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"angular-pipes": "^10.0.0",
"bootstrap": "^4.4.1",
"font-awesome": "^4.7.0",
"ngx-google-analytics": "^11.2.1",
"rxjs": "^6.6.2",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.2",
"@angular-eslint/builder": "^12.0.0",
"@angular-eslint/eslint-plugin": "^12.0.0",
"@angular-eslint/eslint-plugin-template": "^12.0.0",
"@angular-eslint/schematics": "12.6.1",
"@angular-eslint/template-parser": "^12.0.0",
"@angular/cli": "~13.0.2",
"@angular/compiler-cli": "~13.0.1",
"@angular/elements": "^13.0.1",
"@angular/language-service": "~13.0.1",
"@babel/core": "^7.15.5",
"@compodoc/compodoc": "^1.1.15",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-docs": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/angular": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/storybook-deployer": "^2.8.10",
"@types/d3": "^7.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"@webcomponents/custom-elements": "^1.5.0",
"babel-loader": "^8.2.2",
"codelyzer": "^6.0.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-prettier": "^3.3.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jsdoc": "^3.6.4",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"svg-sprite": "^1.5.0",
"ts-node": "~7.0.0",
"typescript": "~4.4.4"
}
}