This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.48 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
{
"name": "jst-library",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build:masks": " ng build @justa/mask-directive",
"dev:masks": "ng build @justa/mask-directive --watch",
"build:validators": "ng build @justa/validators ",
"dev:validators": "ng build @justa/validators --watch",
"build:pagination": "ng build @justa/jst-pagination ",
"dev:pagination": "ng build @justa/jst-pagination --watch",
"build:utilities": "ng build @justa/utilities ",
"dev:utilities": "ng build @justa/utilities --watch",
"build:all": "concurrently \"npm run build:masks\" \"npm run build:validators\" \"npm run build:pagination\" \"npm run build:utilities\"",
"watch:all": "concurrently \"npm run dev:masks\" \"npm run dev:validators\" \"npm run build:utilities\"",
"build:clean": "rimraf dist",
"release": "np",
"storybook": "concurrently \"npm run watch:all\" \"start-storybook -p 6006\"",
"build-storybook": "concurrently \"npm run build:all\" \"build-storybook\""
},
"private": true,
"dependencies": {
"@angular/animations": "8.1.3",
"@angular/common": "8.1.3",
"@angular/compiler": "8.1.3",
"@angular/core": "8.1.3",
"@angular/forms": "8.1.3",
"@angular/http": "7.2.16",
"@angular/platform-browser": "8.1.3",
"@angular/platform-browser-dynamic": "8.1.3",
"@angular/router": "8.1.3",
"@brazilian-utils/formatters": "0.1.10",
"@brazilian-utils/validators": "0.1.9",
"bootstrap": "4.6.1",
"core-js": "3.6.5",
"inputmask": "4.0.9",
"moment": "2.29.3",
"rxjs": "6.6.7",
"tslib": "1.14.1",
"zone.js": "0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1102.19",
"@angular-devkit/build-ng-packagr": "0.1002.0",
"@angular/cli": "8.3.29",
"@angular/compiler-cli": "8.1.3",
"@angular/language-service": "8.1.3",
"@babel/core": "7.18.2",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@storybook/addon-actions": "5.3.21",
"@storybook/addon-links": "5.3.21",
"@storybook/addon-notes": "5.3.21",
"@storybook/addons": "5.3.22",
"@storybook/angular": "5.3.21",
"@types/jasmine": "3.10.6",
"@types/jasminewd2": "2.0.10",
"@types/node": "12.20.55",
"babel-loader": "8.2.5",
"codelyzer": "5.2.2",
"concurrently": "4.1.2",
"husky": "4.3.8",
"jasmine-core": "3.99.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "2.1.1",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"ng-packagr": "5.7.1",
"np": "5.2.1",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"protractor": "5.4.4",
"rimraf": "2.7.1",
"ts-node": "8.10.2",
"tsickle": "0.46.0",
"tslib": "1.14.1",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "3.9.10"
},
"contributors": [
{
"name": "Rai Siqueira",
"email": "[email protected]",
"url": "https://raisiqueira.dev"
},
{
"name": "Valdery Paes",
"email": "[email protected]"
},
{
"name": "Matheus Gomes",
"email": "[email protected]"
}
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}