-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 5.8 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "docs.ddoo.dev",
"version": "1.0.2",
"main": "index.js",
"repository": {
"url": "https://github.com/ddoodev/ddoocs.git"
},
"author": "ddoodev",
"license": "MIT",
"scripts": {
"postinstall": "uglifyjs node_modules/lunr/lunr.js -c -m -o src/assets/js/lunr.min.js --source-map",
"ng": "ng",
"start": "ng serve --configuration=fast",
"start:docker": "ng serve --configuration=production,stable --host 0.0.0.0",
"setup": "npm install && npm run ~~clean-generated && npm run docs:build",
"prebuild": "npm run setup",
"build": "npm run ~~build",
"lint": "npm run docs-lint && ng lint",
"test": "ng test",
"pree2e": "npm run update-webdriver",
"e2e": "ng e2e --no-webdriver-update",
"e2e-prod": "npm run e2e --environment=dev --target=production",
"http-server": "http-server",
"test-pwa-score-localhost": "concurrently --kill-others --success first \"http-server dist -p 4200 --silent\" \"npm run test-pwa-score http://localhost:4200 90\"",
"test-pwa-score": "node scripts/test-pwa-score",
"payload-size": "scripts/payload.sh",
"docs:build": "npx ts-node -P tsconfig.docs.json ./tools/transforms/cli.ts",
"docs:watch": "npx nodemon --watch content --ext * --exec \"npm run ~~clean-generated && npm run docs:build\"",
"docs:lint": "eslint tools/transforms --parser-options project:tsconfig.docs.json",
"docs:test": "npx ts-node -P tsconfig.docs.json tools/transforms/dgeni/test.js",
"serve-and-sync": "concurrently --kill-others \"npm run docs-watch --watch-only\" \"npm run start\"",
"update-webdriver": "webdriver-manager update --standalone false --gecko false $CHROMEDRIVER_VERSION_ARG",
"~~build": "ng build --configuration=production,stable --source-map",
"~~clean-generated": "rimraf src/generated",
"submodules:init": "git submodule update --init",
"sw:patch": "patch -p0 -i tools/patches/ngsw-worker-skip-index.patch",
"postbuild:cf": "npm run minify-index && npm run minify-sw && npm run update-ngsw-config",
"content:build": "npx ts-node -P tsconfig.docs.json ./tools/transforms/cli.ts --content-only",
"content:clean": "rimraf src/generated/docs/guide.json src/generated/docs/guide src/generated/images src/generated/navigation.json",
"content:watch": "npx nodemon --watch content/navigation.json --watch content/images --watch content/guide --ext * --exec \"npm run content:clean && npm run content:build\"",
"submodules:update": "git submodule foreach --recursive git reset --hard && git submodule update --remote --merge",
"minify-index": "npx html-minifier -o dist/index.html dist/index.html --remove-comments --collapse-whitespace --minify-js --minify-css",
"minify-sw": "npx terser dist/ngsw-worker.js -o dist/ngsw-worker.js -c --comments /^##/",
"update-ngsw-config": "ngsw-config dist ngsw-config.json"
},
"engines": {
"node": ">=16.14.0"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.1",
"@angular/cdk": "^16.0.1",
"@angular/common": "^16.0.1",
"@angular/compiler": "^16.0.1",
"@angular/core": "^16.0.1",
"@angular/elements": "^16.0.1",
"@angular/forms": "^16.0.1",
"@angular/material": "^16.0.1",
"@angular/platform-browser": "^16.0.1",
"@angular/platform-browser-dynamic": "^16.0.1",
"@angular/router": "^16.0.1",
"@angular/service-worker": "^16.0.1",
"@webcomponents/custom-elements": "^1.5.0",
"eyes.selenium": "^3.7.0",
"rxjs": "^7.5.1",
"tslib": "^2.3.1",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.1",
"@angular-eslint/builder": "16.0.1",
"@angular-eslint/eslint-plugin": "16.0.1",
"@angular-eslint/eslint-plugin-template": "16.0.1",
"@angular-eslint/schematics": "16.0.1",
"@angular-eslint/template-parser": "16.0.1",
"@angular/cli": "^16.0.1",
"@angular/compiler-cli": "^16.0.1",
"@jsdevtools/rehype-inline-svg": "^1.1.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.3",
"@types/node": "^16.14.0",
"@types/svgo": "^1.3.3",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"archiver": "^3.0.0",
"canonical-path": "^1.0.0",
"chalk": "^2.1.0",
"cjson": "^0.5.0",
"concurrently": "^5.3.0",
"cross-spawn": "^6.0.5",
"css-selector-parser": "^1.3.0",
"dgeni": "^0.4.14",
"dgeni-packages": "^0.30.0",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-jsdoc": "^43.0.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fs-extra": "^8.0.1",
"globby": "^9.2.0",
"hast-util-is-element": "^1.0.3",
"hast-util-to-string": "^1.0.2",
"html": "^1.0.0",
"http-server": "^0.12.3",
"ignore": "^5.1.2",
"image-size": "^0.7.4",
"jasmine": "^4.1.0",
"jasmine-core": "~4.1.0",
"jasmine-spec-reporter": "~7.0.0",
"jasmine-ts": "^0.4.0",
"jsdom": "^15.1.1",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lighthouse": "^7.0.1",
"lodash": "^4.17.20",
"lunr": "^2.1.0",
"memfs": "^4.6.0",
"protractor": "~7.0.0",
"rehype-slug": "^2.0.3",
"remark": "^12.0.1",
"remark-html": "^13.0.2",
"rimraf": "^2.6.1",
"semver": "^6.1.1",
"svgo": "^1.3.2",
"svgson": "^4.1.0",
"tree-kill": "^1.2.2",
"ts-node": "^8.2.0",
"typescript": "5.0.4",
"uglify-js": "^3.6.0",
"unist-util-filter": "^1.0.2",
"unist-util-source": "^1.0.5",
"unist-util-visit": "^1.4.1",
"unist-util-visit-parents": "^2.1.2",
"watchr": "^4.1.0",
"xregexp": "^4.0.0",
"yamljs": "^0.3.0",
"yargs": "^17.0.24"
}
}