-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.03 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": "react-ts-emotion-ssr-monorepo",
"version": "1.0.0",
"description": "React, Typescript, Webpack, Emotion monorepo.",
"repository": "https://github.com/alfed7/react-ts-emotion-ssr-monorepo.git",
"author": "Alexander Fedorenko",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"tsc": "yarn workspaces foreach run tsc",
"tsc:core": "yarn workspace @retesm/core tsc",
"tsc:web": "yarn workspace @retesm/web tsc",
"tsc:server": "yarn workspace @retesm/server tsc",
"start": "yarn start:server",
"start:web": "yarn workspace @retesm/web start",
"start:server": "yarn workspace @retesm/server start",
"dev": "yarn workspaces foreach -pi run dev",
"dev:core": "yarn workspace @retesm/core dev",
"dev:web": "yarn workspace @retesm/web dev",
"dev:server": "yarn workspace @retesm/server dev",
"build": "npm-run-all build:core build:web build:server",
"build:core": "yarn workspace @retesm/core build",
"build:web": "yarn workspace @retesm/web build",
"build:server": "yarn workspace @retesm/server build",
"mon:server": "yarn workspace @retesm/server mon",
"test:server": "yarn --cwd packages/server test",
"test:web": "yarn --cwd packages/web test",
"test:core": "yarn --cwd packages/core test",
"test": "yarn workspaces foreach run test",
"build:storybook": "yarn workspace @retesm/core build-storybook",
"storybook": "yarn workspace @retesm/core storybook"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@svgr/rollup": "^6.5.1",
"rollup": "^3.2.5",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-replace": "^2.2.0",
"typescript": "^4.8.4",
"yarn-run-all": "^3.1.1"
},
"packageManager": "[email protected]"
}