-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 2.17 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
{
"name": "monorepo",
"version": "0.9.56",
"description": "our monorepo",
"repository": "[email protected]:zerdos/spike.land.git",
"author": "Zoltan Erdos <[email protected]>",
"private": true,
"workspaces": [
"packages/*",
"devcontainers/*"
],
"scripts": {
"dev": "yarn workspace @spike-npm-land/code dev",
"dev:fe": "yarn workspace @spike-npm-land/code dev",
"dev:workers": "yarn workspaces foreach --all -p --include '@spike-npm-land/{code-worker,transpile}' run dev",
"build": "yarn clean && yarn build:all",
"build:all": "yarn workspaces foreach --all -p run build",
"build:fe": "yarn workspace @spike-npm-land/code build",
"build:workers": "yarn workspaces foreach --all -p --include '@spike-npm-land/{code-worker,transpile}' run build",
"deploy:dev": "yarn build:fe && yarn workspaces foreach --all -p run w:deploy:dev",
"deploy:prod": "NODE_ENV=production yarn build:fe && yarn workspaces foreach --all -p run w:deploy:prod",
"deploy:full": "yarn fmt && git add . && yarn build:all && yarn w:deploy:dev && yarn w:deploy:prod && git commit -m 'deploy' && git pull && git push",
"types:check": "yarn workspaces foreach --all -p run types:check",
"types:build": "yarn workspaces foreach --all -p run types:build",
"test": "yarn workspaces foreach --all -p run test",
"test:e2e": "playwright test tests/*.spec.ts",
"clean": "yarn workspaces foreach --all -p run clean",
"lint": "yarn eslint && yarn fmt",
"eslint": "eslint --config eslint.config.cjs .",
"fmt": "yarn dprint fmt \"packages/**/*\"",
"ci": "yarn install && yarn lint && yarn build:all && yarn test",
"release": "yarn clean && yarn build:all && yarn deploy:full",
"docker:build": "yarn workspaces foreach --all -p run docker:build",
"docker:push": "yarn workspaces foreach --all -p run docker:push"
},
"devDependencies": {
"@typescript-eslint/parser": "8.24.0",
"@yarnpkg/sdks": "3.2.0",
"dprint": "0.49.0",
"eslint": "9.20.1",
"eslint-plugin-react": "7.37.4",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0"
},
"packageManager": "[email protected]",
"dependencies": {
"diff-match-patch-ts": "0.6.0"
}
}