-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 3.13 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
{
"name": "k8s-form-in-action",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-p build:*",
"build:demo": "ng build --configuration production",
"build:lib": "ng-packagr -p packages/ng-resource-form-util",
"debug": "ng-packagr -p packages/ng-resource-form-util/ng-package.debug.json",
"dev": "yarn start",
"docs": "sirv docs",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:style": "stylelint . --cache",
"lint:ts": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build:lib",
"release": "changeset publish",
"serve": "sirv docs/demo -p 4200",
"start": "ng serve --hmr",
"test": "ng test",
"test:watch": "WATCH=true ng test"
},
"devDependencies": {
"@1stg/app-config": "^9.0.0",
"@angular-builders/custom-webpack": "^16.0.0",
"@angular-devkit/build-angular": "^16.1.0",
"@angular/animations": "^16.1.1",
"@angular/cli": "^16.1.0",
"@angular/common": "^16.1.1",
"@angular/compiler": "^16.1.1",
"@angular/compiler-cli": "^16.1.1",
"@angular/core": "^16.1.1",
"@angular/forms": "^16.1.1",
"@angular/language-service": "^16.1.1",
"@angular/platform-browser": "^16.1.1",
"@angular/platform-browser-dynamic": "^16.1.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@types/jasmine": "^4.3.4",
"@types/jasminewd2": "^2.0.10",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.7",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.3.1",
"@types/webpack-env": "^1.18.1",
"jasmine-core": "^5.0.1",
"jasmine-spec-reporter": "^7.0.0",
"js-yaml": "^4.1.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lodash-es": "^4.17.21",
"markdown-it": "^13.0.1",
"monaco-editor": "^0.31.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"monaco-yaml": "^4.0.4",
"ng-monaco-editor": "^5.0.3",
"ng-packagr": "^16.1.0",
"rxjs": "^7.5.5",
"sirv-cli": "^2.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"yarn-deduplicate": "^6.0.2",
"zone.js": "^0.13.1"
},
"resolutions": {
"prettier": "^2.8.8"
},
"commitlint": {
"extends": [
"@1stg"
]
},
"eslintConfig": {
"root": true,
"extends": "@1stg/eslint-config/loose",
"rules": {
"jest/no-export": 0,
"markup/markup": 0
}
},
"eslintIgnore": [
"docs/demo",
"node_modules",
"release",
"CHANGELOG.md",
"/!.*.js"
],
"prettier": "@1stg/prettier-config/semi/angular",
"remarkConfig": {
"plugins": [
"@1stg/remark-preset"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"stylelint": {
"extends": "@1stg/stylelint-config/loose",
"rules": {
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/^(ng|x)-/"
]
}
]
}
}
}