-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.83 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.83 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
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
{
"name": "@pdasolucoes/web",
"version": "2.6.7",
"description": "This is components aplications for PDA-Solucoes",
"main": "./lib/index.js",
"types": "./lib/index",
"scripts": {
"prebuild": "npm test",
"build": "tsc",
"postbuild": "node ./helpers/builder.js",
"test": "jest --colors -u",
"publishLocal": "npm publish --userconfig .\\.npmrc",
"lint": "eslint --ignore-path .eslintignore --fix --ext .ts,.tsx,.js,.jsx .",
"prettier": "prettier --ignore-path .eslintignore --write ."
},
"repository": {
"type": "git",
"url": "git+github.com:darthC0de/lib.git"
},
"author": "Gabriel Bizzi <blitzcorvinato@gmail.com> (https://github.com/GabrielBizzi)",
"contributors": [
"Rodrigo Cordeiro <rodrigomendoncca@gmail.com> (https://rodcordeiro.com.br/)",
"Juann Brandão (https://github.com/juannbrandao)"
],
"license": "MIT",
"homepage": "https://github.com/darthC0de/lib",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./setupTests.ts"
],
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!lib/**",
"!*.{j,t}s"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./fileTransformer.js"
},
"testMatch": [
"**/*/?(*.)+(spec|test).[jt]s?(x)"
],
"collectCoverage": true,
"coverageDirectory": "__tests__/__coverage__"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "12.8.3",
"@types/crypto-js": "4.1.1",
"@types/enzyme": "3.10.12",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/file-saver": "2.0.5",
"@types/jest": "26.0.24",
"@types/node": "12.20.55",
"@types/react": "17.0.48",
"@types/react-dom": "16.9.16",
"@types/react-paginate": "6.2.3",
"@types/react-router-dom": "5.3.3",
"@types/react-select": "3.1.2",
"@types/react-test-renderer": "17.0.2",
"@types/rx": "4.1.2",
"@types/styled-components": "5.1.25",
"@types/yup": "0.29.14",
"@typescript-eslint/parser": "5.28.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.2",
"eslint": "8.16.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "27.5.1",
"jsdoc": "3.6.11",
"prettier": "2.6.2",
"ts-jest": "27.1.5"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/data-grid": "^4.0.0-alpha.37",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"@material-ui/styles": "^4.11.4",
"@nivo/core": "0.74.1",
"@nivo/line": "0.74.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@unform/core": "^2.1.3",
"@unform/web": "^2.1.3",
"crypto-js": "^4.1.1",
"exceljs": "4.2.1",
"file-saver": "^2.0.5",
"notistack": "^1.0.10",
"polished": "^4.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-select": "^3.1.1",
"react-test-renderer": "^17.0.2",
"rxjs": "^6.6.3",
"styled-components": "^5.2.1",
"typescript": "4.1",
"yup": "^0.31.1"
}
}