-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.84 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
{
"name": "ng-excel",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"lint": "ng lint",
"start": "ng serve",
"build": "ng build",
"analyze-and-build": "ng build --prod --stats-json && webpack-bundle-analyzer -O -m static ./dist/stats.json",
"move-analysis-report": "cp report.html dist/report.html",
"test": "npm run tests",
"tests": "npm run unit-tests && npm run e2e",
"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",
"build-demo": "npm run analyze-and-build && npm run move-analysis-report && npm run build-docs",
"build-docs": "npx compodoc src -p tsconfig.json -d ./dist/docs -n ngExcel-Documentation",
"serve-docs": "npx compodoc -s -p tsconfig.json -d ./dist/docs -n ngExcel-Documentation -w"
},
"greenkeeper": {
"ignore": [
"typescript"
]
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.13",
"@angular/cdk": "^11.2.12",
"@angular/common": "~11.2.13",
"@angular/compiler": "~11.2.13",
"@angular/core": "~11.2.13",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "~11.2.13",
"@angular/material": "~11.2.12",
"@angular/platform-browser": "~11.2.13",
"@angular/platform-browser-dynamic": "~11.2.13",
"@angular/router": "~11.2.13",
"@angular/service-worker": "~11.2.13",
"@ngrx/effects": "^11.1.1",
"@ngrx/entity": "^11.1.1",
"@ngrx/router-store": "^11.1.1",
"@ngrx/store": "^11.1.1",
"@ngrx/store-devtools": "^11.1.1",
"lodash-es": "^4.17.15",
"npm": "^6.14.6",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.12",
"@angular/cli": "~11.2.12",
"@angular/compiler-cli": "~11.2.13",
"@angular/language-service": "~11.2.13",
"@babel/core": "^7.8.4",
"@compodoc/compodoc": "^1.1.11",
"@cypress/webpack-preprocessor": "^4.1.0",
"@types/jest": "^25.1.0",
"@types/node": "~13.7.0",
"babel-loader": "^8.0.6",
"codelyzer": "^6.0.0",
"concurrently": "^5.0.2",
"cypress": "^4.0.1",
"cypress-commands": "^1.0.0",
"jest": "^24.8.0",
"jest-preset-angular": "^7.1.1",
"node-fetch": "^2.6.0",
"protractor": "~7.0.0",
"spa-http-server": "^0.9.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tslint": "~6.1.3",
"typescript": "~4.0.5",
"webpack-bundle-analyzer": "^3.6.0"
}
}