forked from dcaslin/d2-checklist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3 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
{
"name": "d2-checklist",
"version": "12.9.0",
"manifest": "90085.20.12.12.2003-4",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"stage-prod-keys": "node stage-prod-config.js",
"docker-start": "ng serve --host 0.0.0.0 --ssl",
"buildStats": "ng build --statsJson",
"analyze": "webpack-bundle-analyzer dist/stats.json",
"build": "ng build",
"test": "npm run lint && ng test --single-run",
"lint": "ng lint",
"e2e": "ng e2e",
"watch": "ng test --browsers ChromeHeadless --reporters spec",
"build:prod": "ng build --target production --aot --build-optimizer --vendor-chunk --extract-css --output-hashing all --stats-json",
"clean": "rm -rf ./dist/",
"server": "cd dist && http-server",
"prod": "npm run clean && npm run build:prod && npm run server",
"ci": "npm run clean && ng lint && ng test --browser ChromeTravisCi --single-run --reporters spec && npm run build:travisci",
"release": "standard-version && git push --follow-tags origin master",
"postinstall": "ngcc"
},
"private": true,
"dependencies": {
"@ag-grid-community/angular": "^24.1.0",
"@ag-grid-community/client-side-row-model": "^24.1.0",
"@angular/animations": "^11.0.5",
"@angular/cdk": "^11.0.3",
"@angular/common": "^11.0.5",
"@angular/compiler": "^11.0.5",
"@angular/core": "^11.0.5",
"@angular/forms": "^11.0.5",
"@angular/material": "^11.0.3",
"@angular/platform-browser": "^11.0.5",
"@angular/platform-browser-dynamic": "^11.0.5",
"@angular/platform-server": "^11.0.5",
"@angular/router": "^11.0.5",
"@angular/service-worker": "^11.0.5",
"@fortawesome/angular-fontawesome": "0.8.1",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/pro-duotone-svg-icons": "^5.13.0",
"@fortawesome/pro-light-svg-icons": "^5.13.0",
"@fortawesome/pro-regular-svg-icons": "^5.13.0",
"@fortawesome/pro-solid-svg-icons": "^5.13.0",
"chart.js": "^2.9.3",
"idb-keyval": "^3.2.0",
"jszip": "^3.3.0",
"jszip-utils": "^0.1.0",
"lodash.isequal": "^4.5.0",
"lz-string": "^1.4.4",
"moment": "^2.24.0",
"ng2-charts": "^2.4.2",
"ngx-clipboard": "^12.3.1",
"ngx-moment": "^3.5.0",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.5",
"@angular/cli": "^11.0.5",
"@angular/compiler-cli": "~11.0.5",
"@angular/language-service": "~11.0.5",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "^7.0.0",
"ts-node": "~8.3.0",
"tslint": "^6.1.3",
"typescript": "~4.0.5"
}
}