-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.92 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
{
"name": "blog",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "concurrently --names lib,ng,scully \"npm run build:lib\" \"npm run watch:app\" \"wait-on --delay 3000 dist/scully-plugin-esa/ && wait-on --delay 3000 dist/blog/ && npx scully --watch\"",
"start:ng": "ng serve",
"build": "npm run build:lib && npm run build:app",
"build:app": "ng build --project scully-plugin-esa && ng build",
"build:lib": "ng build --project scully-plugin-esa",
"watch:app": "ng build --watch --configuration development",
"watch:lib": "ng build --watch --configuration development --project scully-plugin-esa",
"test": "jest --no-cache",
"scully": "npx scully --",
"scully:serve": "npx scully serve --"
},
"private": true,
"dependencies": {
"@angular/animations": "12.2.16",
"@angular/cdk": "12.2.13",
"@angular/common": "12.2.16",
"@angular/compiler": "12.2.16",
"@angular/core": "12.2.16",
"@angular/flex-layout": "12.0.0-beta.35",
"@angular/forms": "12.2.16",
"@angular/material": "12.2.13",
"@angular/platform-browser": "12.2.16",
"@angular/platform-browser-dynamic": "12.2.16",
"@angular/router": "12.2.16",
"@scullyio/init": "2.1.36",
"@scullyio/ng-lib": "2.1.36",
"@scullyio/scully": "2.1.36",
"@scullyio/scully-plugin-puppeteer": "2.1.36",
"jsdom": "^21.1.0",
"lunr": "2.3.9",
"lunr-languages": "1.9.0",
"prismjs": "1.29.0",
"rxjs": "7.5.6",
"tslib": "2.4.0",
"zone.js": "0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.2.18",
"@angular/cli": "12.2.18",
"@angular/compiler-cli": "12.2.16",
"@types/jest": "27.5.2",
"@types/lunr": "2.3.4",
"@types/marked": "^4.0.8",
"@types/node": "^16.11.56",
"concurrently": "^7.6.0",
"jest": "27.5.1",
"jest-preset-angular": "11.1.2",
"ng-packagr": "^12.1.1",
"typescript": "4.3.5",
"wait-on": "^7.0.1"
}
}