Skip to content

Commit

Permalink
add initial configuration using lerna
Browse files Browse the repository at this point in the history
  • Loading branch information
toschmidt committed Feb 21, 2020
1 parent 49d3098 commit 3c13d04
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.0.0"
}
48 changes: 48 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "elite-se.xyz",
"version": "1.0.0",
"description": "Elite-SE webpage",
"author": "Tobias Schmidt <[email protected]>, Dominik Horn <[email protected]>",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna run clean --stream && rm -rfv node_modules tsconfig.tsbuildinfo",
"postinstall": "patch-package",
"lint": "eslint './packages/*/src/**/*.{ts,d.ts}' --max-warnings 0",
"lint:fix": "eslint './packages/*/src/**/*.{ts,d.ts}' --fix",
"build": "tsc -b && lerna run webpack:build --stream",
"start": "lerna run production:start --stream",
"frontend:watch": "lerna run frontend:watch --stream"
},
"devDependencies": {
"@hot-loader/react-dom": "^16.11.0",
"@types/react": "^16.9.16",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"cross-env": "^6.0.3",
"css-loader": "^3.2.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"file-loader": "^5.0.2",
"graphql": "^14.5.8",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"lerna": "^3.16.4",
"patch-package": "^6.2.0",
"prettier": "^1.18.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"resolutions": {},
"dependencies": {}
}

0 comments on commit 3c13d04

Please sign in to comment.