forked from simplifiedcourses/ngx-vest-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.8 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
{
"name": "simplified",
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"api": "json-server projects/examples/src/backend/db.json",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"prepare": "husky install",
"build:app": "ng build examples --configuration=production --base-href=/ngx-vest-forms/",
"build:lib": "ng build ngx-vest-forms --configuration=production",
"build:ci": "npm run build:lib && npm run build:app",
"postbuild:lib": "copyfiles README.md dist/ngx-vest-forms",
"test:lib": "jest",
"storybook:build": "npx ng run ngx-vest-forms:build-storybook",
"test:storybook:ci": "npx run-p --race test:storybook preview-storybook",
"test:storybook": "wait-on http://127.0.0.1:6006 && test-storybook -c projects/ngx-vest-forms/.storybook --url http://127.0.0.1:6006 --",
"preview-storybook": "http-server dist/storybook/ngx-vest-forms --port 6006 --silent",
"test:ci": "npm run test:lib",
"semantic-release": "semantic-release",
"prettier:check": "prettier --check \"projects/**/*.{ts,js,json,css,scss,html}\"",
"prettier:format": "prettier --write \"projects/**/*.{ts,js,json,css,scss,html}\""
},
"private": false,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"@storybook/jest": "^0.2.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"vest": "^5.2.8",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular/cli": "~18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@chromatic-com/storybook": "^1.5.0",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@compodoc/compodoc": "^1.1.25",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-coverage": "^1.0.4",
"@storybook/addon-docs": "^8.1.6",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.6",
"@storybook/angular": "^8.1.6",
"@storybook/blocks": "^8.1.6",
"@storybook/test": "^8.1.10",
"@storybook/test-runner": "^0.18.2",
"@tailwindcss/forms": "^0.5.7",
"@types/jasmine": "~4.3.0",
"@types/jest": "^29.5.12",
"autoprefixer": "^10.4.19",
"concurrently": "^7.5.0",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jasmine-core": "~4.6.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.1.0",
"json-server": "^0.17.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^18.0.0",
"ngx-mask": "^17.0.8",
"npm-run-all": "^4.1.5",
"playwright": "^1.44.1",
"postcss": "^8.4.38",
"semantic-release": "^22.0.5",
"semantic-release-cli": "^5.4.4",
"storybook": "^8.1.6",
"tailwindcss": "^3.4.3",
"typescript": "~5.4.5",
"wait-on": "^6.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/simplifiedcourses/ngx-vest-forms.git"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"./projects/ngx-vest-forms/src/setup-jest.ts"
],
"globalSetup": "jest-preset-angular/global-setup"
},
"publishConfig": {
"access": "public"
}
}