-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.53 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
{
"name": "fake-company-mfe",
"private": true,
"scripts": {
"start": "concurrently -p \"none\" \"pnpm run start-all\" \"pnpm run json-server\"",
"start-all": "nx run-many --target=start --all --parallel --maxParallel=10",
"build": "nx run-many --target=build --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"e2e": " concurrently -k -s first -p \"none\" \"nx run-many --target=e2e --all --parallel\" \"pnpm run start-all\"",
"e2e-ci": " concurrently -k -s first -p \"none\" \"nx run-many --target=e2e-ci --all --parallel\" \"pnpm run start-all\"",
"json-server": "json-server ./config/json-server/index.js --watch --routes ./config/json-server/routes.json --port 4000 --delay 500"
},
"engines": {
"node": ">=10",
"pnpm": ">=5"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@babel/runtime": "^7.12.5",
"@nrwl/cli": "^11.2.8",
"@nrwl/nx-cloud": "^11.1.2",
"@nrwl/tao": "^11.2.8",
"@nrwl/workspace": "^11.2.8",
"@storybook/react": "^6.1.16",
"@svgr/webpack": "^5.5.0",
"@testing-library/cypress": "^7.0.3",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "5.0.3",
"@types/css-minimizer-webpack-plugin": "^1.1.1",
"@types/jest": "26.0.20",
"@types/mini-css-extract-plugin": "1.2.1",
"@types/node": "14.14.27",
"@types/redux-mock-store": "^1.0.2",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/webpack-dev-server": "3.11.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"axios": "0.21.1",
"axios-mock-adapter": "^1.18.1",
"babel-eslint": "^10.0.0",
"babel-jest": "26.2.2",
"babel-loader": "8.2.2",
"bundle-loader": "0.5.6",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"core-js": "^3.8.3",
"css-loader": "^5.0.2",
"css-minimizer-webpack-plugin": "^1.2.0",
"cypress": "^6.5.0",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "^3.9.0",
"fork-ts-checker-webpack-plugin": "6.1.0",
"html-webpack-plugin": "5.0.0-beta.6",
"husky": "4.3.8",
"import-sort-style-module": "^6.0.0",
"jest": "26.6.3",
"json-server": "^0.16.3",
"lint-staged": "10.5.3",
"mini-css-extract-plugin": "^1.3.6",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"react": "16.14.0",
"react-dom": "16.14.0",
"redux-mock-store": "^1.5.4",
"sass": "^1.32.7",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-jest": "26.5.0",
"ts-node": "9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "4.1.3",
"wait-on": "^5.2.1",
"webpack": "5.19.0",
"webpack-cli": "4.5.0",
"webpack-dev-server": "4.0.0-beta.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}