-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.91 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
{
"name": "yet-another-monorepo-example",
"version": "1.0.0",
"description": "Monorepo template for a fullstack TypeScript application based on React and Express.",
"author": "Tobias Schmidt <tobias.schmidt@in.tum.de>",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn install && lerna run bootstrap --stream",
"clean": "lerna run clean --stream && rimraf tsconfig.tsbuildinfo",
"purge": "yarn clean && lerna run purge && rimraf node_modules yarn.lock",
"build": "tsc --build && lerna run build --stream",
"watch": "tsc --build --watch",
"lint": "eslint './packages/*/src/**/*.{ts,tsx}' --max-warnings 0",
"lint:fix": "eslint './packages/*/src/**/*.{ts,tsx}' --fix",
"backend:serve": "lerna run backend:serve --stream",
"backend:start": "lerna run backend:start --stream",
"frontend:serve": "lerna run frontend:serve --stream",
"electron:start": "lerna run electron:start --stream",
"electron:serve": "lerna run electron:serve --stream"
},
"devDependencies": {
"lerna": "^3.20.2",
"typescript": "^3.8.3",
"nodemon": "^2.0.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"@hot-loader/react-dom": "^16.13.0",
"source-map-loader": "^0.2.4",
"css-loader": "^3.5.2",
"style-loader": "^1.1.4",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"@typescript-eslint/parser": "^2.28.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20"
},
"resolutions": {},
"dependencies": {}
}