-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
158 lines (158 loc) · 5.52 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "novo-elements",
"version": "10.0.0",
"description": "Bullhorn's Novo-Elements repository, including core projects and tools",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "bullhorn/novo-elements"
},
"scripts": {
"build": "ng build novo-elements",
"postbuild": "npm run copy:scss && npm run build:examples",
"build:ci": "ng build novo-elements",
"postbuild:ci": "npm run copy:resources",
"build:watch": "ng build novo-elements --watch",
"build:demo": "ng build demo",
"build:schematics": "tsc -p ./projects/schematics/tsconfig.json",
"prebuild:examples": "npm run generate:all",
"build:examples": "ng build novo-examples",
"build:examples:watch": "ng build novo-examples --watch",
"watch:examples": "npm-watch generate:all",
"generate:examples": "tsx ./tools/examples-module.ts",
"generate:routes": "tsx ./tools/examples-routes.ts",
"generate:contributors": "tsx ./tools/contributors.ts",
"generate:all": "npm run generate:examples && npm run generate:routes",
"start": "ng serve demo",
"copy:resources": "npm run copy:scss",
"copy:schematics": "npx copyfiles -f projects/schematics/*.json dist/novo-elements/schematics/",
"copy:scss": "node copy-scss.js",
"test": "jest projects/novo-elements --no-coverage --max-workers=4",
"test:coverage": "jest projects/novo-elements --max-workers=4",
"test:watch": "jest projects/novo-elements --watch",
"lint": "htmlhint \"projects\" --config .htmlhintrc",
"lint:scss": "stylelint \"projects/**/*.scss\" --syntax scss",
"compat": "ngcc ... --tsconfig './projects/novo-elements/tsconfig.lib.json'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version:elements": "standard-version",
"release:elements": "standard-version",
"postrelease:elements": "git push --follow-tags origin master; npm run build; cd dist/novo-elements && npm publish",
"snapshot-publish": "bash snapshot-publish",
"prettier": "prettier --write \"./projects/**/*.{ts,js,html,scss}\"",
"prettier:check": "prettier --list-different \"./projects/**/*.{ts,js,html,scss}\""
},
"dependencies": {
"@angular/animations": "^17.2.0",
"@angular/cdk": "^17.2.0",
"@angular/common": "^17.2.0",
"@angular/compiler": "^17.2.0",
"@angular/core": "^17.2.0",
"@angular/forms": "^17.2.0",
"@angular/platform-browser": "^17.2.0",
"@angular/platform-browser-dynamic": "^17.2.0",
"@angular/platform-server": "^17.2.0",
"@angular/router": "^17.2.0",
"@codemirror/commands": "^6.2.4",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.16.0",
"@qiwi/mixin": "^1.2.6",
"ace-builds": "~1.4.12",
"angular-imask": "^7.3.0",
"brace": "0.11.1",
"codemirror": "6.0.1",
"date-fns": "2.30.0",
"imask": "^7.3.0",
"novo-design-tokens": "^0.0.9",
"post-robot": "9.0.30",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "~7.8.1",
"timezone-support": "^3.1.0",
"tslib": "^2.0.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.2.0",
"@angular-devkit/core": "^17.2.0",
"@angular-devkit/schematics": "^17.2.0",
"@angular/cli": "^17.2.0",
"@angular/compiler-cli": "^17.2.0",
"@angular/language-service": "^17.2.0",
"@bullhorn/bullhorn-icons": "^2.33.0",
"@codemirror/lang-javascript": "^6.1.9",
"@github-docs/frontmatter": "^1.3.1",
"@schematics/angular": "^15.2.10",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.3",
"@types/jasmine": "~3.6.0",
"@types/jest": "~29.5.6",
"@types/node": "^14.0.27",
"angular-split": "^16.2.1",
"codelyzer": "^6.0.0",
"conventional-changelog-cli": "~2.1.0",
"fs-extra": "^10.0.0",
"full-icu": "^1.3.1",
"gh-got": "^10.0.0",
"glob": "^7.1.6",
"highlight.js": "^11.0.1",
"htmlhint": "^1.1.4",
"husky": "^5.0.9",
"jasmine": "^3.10.0",
"jasmine-core": "~3.6.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jest-jasmine2": "~29.7.0",
"jest-preset-angular": "~13.1.6",
"markdown-it": "^12.0.6",
"markdown-it-attrs": "^4.0.0",
"markdown-it-container": "^3.0.0",
"markdown-it-task-lists": "^2.1.1",
"micromatch": "^4.0.4",
"ng-packagr": "17.1.2",
"node-fetch": "^2.6.6",
"npm-watch": "^0.9.0",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^1.1.1",
"pretty-quick": "^2.0.1",
"semantic-release": "^19.0.3",
"standard-version": "^9.1.0",
"stylelint": "~15.10.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended-scss": "~13.0.0",
"stylelint-config-standard": "~34.0.0",
"stylelint-scss": "~5.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.1.0",
"tslint": "~6.1.3",
"tslint-config-prettier": "^1.14.0",
"tsx": "^4.7.0",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,json,scss,css,html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"watch": {
"generate:all": {
"patterns": [
"projects/novo-examples"
],
"extensions": "md,ts,html,scss",
"ignore": "projects/novo-examples/src/examples.*.ts",
"quiet": false
}
}
}