-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.59 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
{
"name": "ngx-boilerplate",
"version": "15.0.1.1",
"scripts": {
"build": "npm run config:prod && ng build",
"config": "ts-node ./scripts/setenv.ts",
"config:dev": "npm run config -- --configuration development",
"config:prod": "npm run config -- --configuration production",
"doc:browser:build": "npm run config:dev && compodoc --config ./.compodocrc.browser.json",
"doc:browser:build-and-serve": "npm run doc:browser:build -- --serve",
"doc:serve": "npm run config:dev && compodoc --serve",
"lint": "npm run lint:css && npm run lint:browser",
"lint:browser": "npm run config:dev && ng lint",
"lint:css": "stylelint ./projects/**/*.scss",
"ng": "ng",
"prettier": "npm run config:dev && prettier --write \"projects/**/*.{scss,ts,html}\"",
"start": "npm run config:dev && ng serve",
"test": "npm run config:dev && ng test",
"test:coverage": "npm run config:dev && ng test --no-watch --code-coverage",
"watch": "npm run config:dev && ng build --watch --configuration development"
},
"private": true,
"dependencies": {
"@angular/animations": "15.0.1",
"@angular/common": "15.0.1",
"@angular/compiler": "15.0.1",
"@angular/core": "15.0.1",
"@angular/forms": "15.0.1",
"@angular/platform-browser": "15.0.1",
"@angular/platform-browser-dynamic": "15.0.1",
"@angular/router": "15.0.1",
"rxjs": "7.5.7",
"tslib": "2.4.1",
"zone.js": "0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.0.1",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "15.0.1",
"@angular/compiler-cli": "15.0.1",
"@compodoc/compodoc": "1.1.19",
"@types/jasmine": "4.3.0",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"change-case": "4.1.2",
"dotenv": "16.0.3",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"jasmine-core": "4.5.0",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"prettier": "2.8.0",
"stylelint": "14.15.0",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-recommended-scss": "8.0.0",
"stylelint-config-standard": "29.0.0",
"stylelint-scss": "4.3.0",
"ts-node": "10.9.1",
"typescript": "~4.8.4",
"yargs": "17.6.2"
}
}