-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ng-library",
"version": "3.0.0",
"scripts": {
"ng": "ng",
"lint": "ng lint",
"start": "ng serve",
"build": "ng build",
"analyze": "ng build --prod --stats-json && webpack-bundle-analyzer -O -m static ./dist/ngLibrary/stats.json",
"move-analysis-report": "cp report.html dist/ngLibrary/report.html",
"tests": "npm run unit-tests && npm run e2e",
"test": "npm run tests",
"unit-tests": "jest --config ./jest/app.config.js",
"unit-tests:watch": "jest --config ./jest/app.config.js --watch",
"unit-tests:coverage": "jest --config ./jest/app.config.js --coverage",
"cypress": "./node_modules/.bin/cypress open",
"e2e": "./node_modules/.bin/cypress run",
"build:e2e:fixtures": "./node_modules/.bin/ts-node ./cypress/support/scripts/simplify-open-library-books-json.ts",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o dist/ngLibrary/storybook",
"build-demo": "npm run analyze && npm run move-analysis-report && npm run build-docs",
"build-docs": "npx compodoc src -p tsconfig.base.json -d ./dist/ngLibrary/docs -n ngLibrary-Documentation",
"serve-docs": "npx compodoc -s -p tsconfig.base.json -d ./dist/ngLibrary/docs -n ngLibrary-Documentation -w"
},
"greenkeeper": {
"ignore": [
"typescript"
]
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.12",
"@angular/cdk": "~11.2.1",
"@angular/common": "~11.2.12",
"@angular/compiler": "~11.2.12",
"@angular/core": "~11.2.12",
"@angular/flex-layout": "~11.0.0-beta.33",
"@angular/forms": "~11.2.12",
"@angular/material": "~11.2.1",
"@angular/platform-browser": "~11.2.12",
"@angular/platform-browser-dynamic": "~11.2.12",
"@angular/router": "~11.2.12",
"@ngrx/effects": "^10.1.2",
"@ngrx/entity": "^10.1.2",
"@ngrx/router-store": "^10.1.2",
"@ngrx/store": "^10.1.2",
"@ngrx/store-devtools": "^10.1.2",
"lodash-es": "^4.17.15",
"npm": "^6.14.6",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.11",
"@angular/cli": "~11.2.11",
"@angular/compiler-cli": "~11.2.12",
"@angular/language-service": "~11.2.12",
"@babel/core": "^7.8.4",
"@compodoc/compodoc": "^1.1.11",
"@cypress/webpack-preprocessor": "^4.1.0",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addon-notes": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/angular": "^5.3.17",
"@types/jest": "^25.1.0",
"@types/node": "~13.9.5",
"babel-loader": "^8.0.6",
"chromatic": "^5.4.0",
"codelyzer": "^5.1.2",
"concurrently": "^5.0.2",
"cypress": "^4.10.0",
"cypress-commands": "^1.0.0",
"jest": "^24.8.0",
"jest-preset-angular": "^7.1.1",
"node-fetch": "^2.6.1",
"protractor": "~7.0.0",
"spa-http-server": "^0.9.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.1.5",
"webpack-bundle-analyzer": "^3.6.0"
}
}