generated from srinivas-jay/monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.6 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
{
"name": "monorepo-template",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
".",
"frontend/**",
"backend/**"
],
"scripts": {
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@swc/helpers": "^0.5.1",
"express": "^4.18.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.1",
"single-spa": "^5.9.4",
"single-spa-react": "^5.0.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/config-lerna-scopes": "^17.6.3",
"@commitlint/config-nx-scopes": "^17.6.4",
"@nrwl/eslint-plugin-nx": "^16.1.4",
"@nx/esbuild": "^16.1.4",
"@nx/jest": "^16.1.4",
"@nx/js": "^16.1.4",
"@nx/node": "^16.1.4",
"@nx/react": "^16.1.4",
"@nx/webpack": "^16.1.4",
"@nx/workspace": "^16.1.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^6.1.2",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.51",
"@testing-library/react": "^14.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.4.0",
"@types/node": "^20.1.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"babel-jest": "^29.4.1",
"commitizen": "^4.3.0",
"concurrently": "^8.0.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.17.17",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"lerna": "^6.6.2",
"lint-staged": "^13.2.2",
"nx": "^16.1.4",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"react-refresh": "^0.10.0",
"react-test-renderer": "18.2.0",
"rimraf": "^5.0.0",
"systemjs-webpack-interop": "^2.3.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.82.1",
"webpack-merge": "^5.8.0"
}
}