-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 4.2 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
{
"author": "Grupo Boticário, tostavio <[email protected]>",
"name": "pdd-template-microfrontend",
"version": "1.0.0",
"private": true,
"description": "Template to build microfrontend using module federation.",
"license": "MIT",
"homepage": "https://github.com/grupoboticario/demaba-oms-lifecycle-portal-micro-frontend#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/grupoboticario/demaba-oms-lifecycle-portal-micro-frontend.git"
},
"bugs": {
"url": "https://github.com/grupoboticario/demaba-oms-lifecycle-portal-micro-frontend/issues"
},
"keywords": [
"scafflater",
"templater",
"scaffold"
],
"workspaces": [
".scafflater/hooks",
".scafflater/helpers",
".scafflater/extension"
],
"scripts": {
"start": "webpack-dev-server --progress --open --config webpack.dev.config.js",
"build": "webpack --progress --config webpack.dev.config.js",
"build:prd": "webpack --progress --env NODE_ENV=production --config webpack.prod.config.js",
"serve": "node local-server.js",
"serve:dev": "yarn run build && yarn run serve",
"serve:prd": "yarn run build:prd && yarn run serve",
"lint-check": "eslint ./src --ext .js,.ts,.tsx -c .eslintrc.js --max-warnings 10 -f pretty",
"lint-fix": "eslint ./src --ext .js,.ts,.tsx -c .eslintrc.js --max-warnings 10 -f pretty --fix",
"lint-check:report": "eslint ./src --ext .js,.ts,.tsx -o ./reports/eslint-report/index.txt -c .eslintrc.js --max-warnings 10 -f pretty",
"prettier-check": "prettier --config ./.prettierrc --check \"./src\"",
"prettier-fix": "prettier --config ./.prettierrc --check \"./src\" --write",
"test": "jest --coverage=false --passWithNoTests",
"test:watch": "jest --coverage=false --watch",
"test:watch-all": "jest --coverage=false --watchAll=true",
"test:coverage": "jest --passWithNoTests",
"test:coverage-watch": "jest --watch",
"test:coverage-watch-all": "jest --watchAll=true",
"check-all": "yarn run lint-check && yarn run prettier-check && yarn run test",
"update-readme": "scafflater-cli partial:run update-readme"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@grupoboticario/flora": "^0.19.7",
"@grupoboticario/flora-react": "^0.13.23",
"@grupoboticario/flora-react-icons": "^8.0.4",
"@grupoboticario/flora-shared-react-side-menu": "^0.4.32",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@scafflater/scafflater": "^1.0.16",
"@scafflater/scafflater-cli": "^1.0.16",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.34",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"fast-sort": "^3.2.0",
"fs-extra": "^10.1.0",
"history": "^5.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"react-hook-form": "^7.37.0",
"react-popper": "^2.3.0",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.8",
"type-fest": "^2.19.0",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
}
}