-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "ng-brazil",
"version": "3.0.0",
"private": true,
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve dev",
"build": "ng build",
"build:app": "npm run copy && ng build packages",
"dist": "npm run build:app && rimraf src/ng-brazil",
"build:lib": "rimraf dist && npm run build:pack",
"build:pack": "ng-packagr -p ng-brazil/ng-package.json",
"build:sass": "npm rebuild sass",
"publishnpm": "npm run build:lib && cd ng-brazil/dist/ && npm publish",
"test": "npm run build:lib && npm run dist && npm run e2e",
"copy": "mkdir -p src/ng-brazil/ && cp -R ng-brazil/dist/* src/ng-brazil",
"testdemo": "ng test",
"lint": "ng lint",
"e2e": "ng e2e --port 4205",
"kill": "kill $(lsof -t -i:4205)"
},
"dependencies": {
"@angular/common": "14.3.0",
"@angular/compiler": "14.3.0",
"@angular/core": "14.3.0",
"@angular/forms": "14.3.0",
"@angular/platform-browser": "14.3.0",
"@angular/platform-browser-dynamic": "14.3.0",
"@angular/router": "14.3.0",
"core-js": "^3.6.4",
"rxjs": "*",
"webpack": "^4.46.0",
"zone.js": "~0.11.4",
"autoprefixer": "^10.2.3",
"js-brasil": "2.5.3",
"postcss": "^8.2.4",
"rxjs-compat": "^6.0.0",
"sass": "^1.32.5",
"tailwindcss": "^2.0.3",
"text-mask-core": "^5.1.2",
"tslib": "^2.0.0",
"typescript": "4.6.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.11",
"@angular-devkit/schematics": "^14.2.11",
"@angular-eslint/builder": "14.4.0",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular-eslint/schematics": "14.4.0",
"@angular-eslint/template-parser": "14.4.0",
"@angular/cli": "14.2.11",
"@angular/compiler-cli": "14.3.0",
"@angular/language-service": "14.3.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"cpr": "^3.0.0",
"eslint": "^8.17.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jasmine": "4.6.0",
"jasmine-core": "4.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"ng-packagr": "^14.2.2",
"protractor": "~7.0.0",
"rimraf": "^2.7.1",
"ts-node": "~7.0.0",
"tsickle": "0.46.3",
"tslib": "^2.0.0",
"typescript": "4.7.2",
"webpack-cli": "^4.9.2",
"codelyzer": "^6.0.1",
"tslint": "~6.1.3"
}
}