Skip to content

Commit

Permalink
refactor(website,website-e2e,analytics,media-queries,ui): Revise the …
Browse files Browse the repository at this point in the history
…packages
  • Loading branch information
movahedan committed May 22, 2022
1 parent 9590525 commit 45b4dfa
Show file tree
Hide file tree
Showing 9 changed files with 297 additions and 27 deletions.
2 changes: 1 addition & 1 deletion apps/website-e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "website-e2e",
"name": "@nx-starter/website-e2e",
"version": "1.0.0",
"dependencies": {
"cypress": "^9.1.0"
Expand Down
11 changes: 11 additions & 0 deletions apps/website/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "@nx-starter/website",
"private": false,
"version": "0.0.1",
"dependencies": {
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.5"
}
}
4 changes: 3 additions & 1 deletion apps/website/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"outputPath": "out/build/apps/website"
},
"configurations": {
"production": {}
"production": {
"outputPath": "out/build/apps/website-prod"
}
}
},
"serve": {
Expand Down
5 changes: 4 additions & 1 deletion libs/modules/analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"name": "@nx-starter/analytics",
"private": false,
"version": "0.0.1"
"version": "0.0.1",
"dependencies": {
"react": "17.0.2"
}
}
5 changes: 4 additions & 1 deletion libs/modules/media-queries/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"name": "@nx-starter/media-queries",
"private": false,
"version": "0.0.1"
"version": "0.0.1",
"dependencies": {
"react": "17.0.2"
}
}
1 change: 1 addition & 0 deletions libs/modules/media-queries/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"root": "libs/modules/media-queries",
"sourceRoot": "libs/modules/media-queries/src",
"projectType": "library",
"tags": [],
"targets": {
"type-check": {
"executor": "./tools/executors/type-check:type-check"
Expand Down
3 changes: 3 additions & 0 deletions libs/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"version": "0.0.1",
"dependencies": {
"@nrwl/storybook": "^13.10.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.5",
"webpack": "^5.27.2"
},
"devDependencies": {
Expand Down
18 changes: 8 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,23 @@
"version": "0.0.1",
"author": "soheil.movahhedan@gmail.com",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"libs/*"
]
},
"workspaces": [
"apps/*",
"libs/*",
"libs/modules/analytics"
],
"scripts": {
"commit": "git-cz"
},
"dependencies": {
"@nrwl/next": "13.3.9",
"core-js": "^3.6.5",
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"regenerator-runtime": "0.13.7",
"styled-components": "^5.3.5",
"tslib": "^2.0.0"
},
"resolutions": {
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5"
},
"devDependencies": {
Expand All @@ -34,6 +31,7 @@
"@nrwl/eslint-plugin-nx": "13.3.9",
"@nrwl/jest": "13.3.9",
"@nrwl/linter": "13.3.9",
"@nrwl/next": "13.3.9",
"@nrwl/node": "^13.4.2",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "13.3.9",
Expand Down
Loading

0 comments on commit 45b4dfa

Please sign in to comment.