-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.41 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.41 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
{
"name": "angular-ngrx-scss",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "npm run build:libs && ng test --browsers=ChromeHeadless --watch=false",
"lint": "ng lint",
"prebuild": "npm run build:libs",
"build:libs": "ng build prism",
"format:check": "prettier --config ./.prettierrc --list-different \"src/{app,environments}/**/*{.ts,.html,.scss}\"",
"format": "prettier --config ./.prettierrc --write \"src/{app,environments}/**/*{.ts,.html,.scss}\"",
"prep": "ng lint && npm run format",
"gen-lang-colors": "node ./scripts/generate-language-colors.js"
},
"private": true,
"dependencies": {
"@angular/animations": "16.1.7",
"@angular/common": "16.1.7",
"@angular/compiler": "16.1.7",
"@angular/core": "16.1.7",
"@angular/forms": "16.1.7",
"@angular/platform-browser": "16.1.7",
"@angular/platform-browser-dynamic": "16.1.7",
"@angular/router": "16.1.7",
"@ngrx/effects": "16.1.0",
"@ngrx/store": "16.1.0",
"@ngrx/store-devtools": "16.1.0",
"@primer/octicons": "16.3.1",
"marked": "4.0.18",
"prismjs": "1.25.0",
"rxjs": "7.8.0",
"tslib": "2.5.0",
"zone.js": "0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.1.6",
"@angular/cli": "16.1.6",
"@angular/compiler-cli": "16.1.7",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@ngrx/schematics": "16.1.0",
"@types/jasmine": "3.10.7",
"@types/marked": "4.0.3",
"@types/node": "20.4.5",
"@types/primer__octicons": "16.1.0",
"@types/prismjs": "1.16.6",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jasmine-core": "3.10.0",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-jasmine": "4.0.2",
"karma-jasmine-html-reporter": "1.7.0",
"karma-verbose-reporter": "0.0.8",
"ng-packagr": "16.1.0",
"node-fetch": "3.2.0",
"prettier": "2.8.4",
"typescript": "4.9.5",
"yaml": "1.10.2"
}
}