-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.79 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
{
"name": "mfng",
"version": "1.0.0",
"private": true,
"description": "Micro Frontends Next Generation - An RSC Playground",
"license": "MIT",
"author": "Hendrik Liebau <mail@hendrik-liebau.de>",
"type": "module",
"workspaces": [
"apps/aws-app",
"apps/cloudflare-app",
"apps/shared-app",
"apps/vercel-app",
"packages/core",
"packages/webpack-rsc"
],
"scripts": {
"build": "turbo build",
"build:dev": "turbo build:dev",
"clean": "npm run compile:clean && rimraf -v {apps,packages}/*/{dist,lib,.turbo,.vercel} node_modules/.cache/turbo",
"compile": "tsc --build",
"compile:clean": "tsc --build --clean",
"compile:watch": "tsc --build --watch --preserveWatchOutput",
"deploy": "turbo deploy",
"dev": "turbo --concurrency 19 watch:dev watch-dev-server:dev dev",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"prerelease": "npm run compile",
"release": "changeset publish",
"start": "turbo --concurrency 19 watch watch-dev-server start",
"test": "turbo test",
"version": "changeset version",
"postversion": "npm install --package-lock-only"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.0",
"eslint-plugin-markdown": "^3.0.1",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.4",
"react-dom": "0.0.0-experimental-778e1ed2-20240926",
"rimraf": "^4.4.1",
"turbo": "^1.8.8",
"typescript": "^5.4.5"
}
}