-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.57 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.57 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
{
"name": "@wizsolucoes/angular-starter",
"version": "15.0.1",
"description": "Generates Wiz boilerplate Angular starter application.",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"test": "npm run build && jasmine src/**/*_spec.js && npm run test:generated:app",
"test:watch": "npm run build && jasmine src/**/*_spec.js --watch=true ",
"format:check": "prettier **/*.{html,ts,json,scss} --check",
"format:write": "prettier ./src/{starter,ng-add}/**/*.{html,ts,json,scss} --write",
"test:generated:apps": "npm run test:generated:app && npm run test:generated:whitelabel",
"test:generated:app": "npx zx ./test-generated-app.mjs",
"test:generated:whitelabel": "cross-env WHITE_LABEL=true npx zx ./test-generated-app.mjs",
"pretest": "npm uninstall -g @angular/cli && npm install -g @angular/cli@latest && ng version"
},
"keywords": [
"schematics"
],
"author": "",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^15.1.3",
"@angular-devkit/schematics": "^15.1.3",
"@angular-eslint/schematics": "^15.2.0",
"@schematics/angular": "^15.1.3",
"@wizsolucoes/ng-material-theme": "^13.0.0",
"comment-json": "^4.2.3",
"typescript": "~4.9.4"
},
"devDependencies": {
"@types/jasmine": "~4.3.1",
"@types/node": "^18.11.18",
"cross-env": "^7.0.3",
"jasmine": "^4.5.0",
"prettier": "^2.8.3"
},
"ng-add": {
"save": false
}
}