forked from Ironclad/rivet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.53 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.53 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@ironclad/rivet",
"license": "MIT",
"repository": "https://github.com/ironclad/rivet",
"packageManager": "yarn@4.8.1",
"workspaces": [
"packages/*"
],
"private": true,
"type": "module",
"scripts": {
"dev": "yarn workspace @ironclad/rivet-app-executor run build && yarn workspace @alpic80/rivet-app run dev",
"release-node": "node --loader ts-node/esm --loader ./.pnp.loader.mjs release-node.mts",
"publish-docs": "tsx publish-docs.mts",
"build": "yarn workspace @alpic80/rivet-core run build && yarn workspace @alpic80/rivet-node run build && yarn workspace @ironclad/rivet-app-executor run build && yarn workspace @ironclad/trivet run build && yarn workspace @alpic80/rivet-app run build",
"publish": "yarn workspace @alpic80/rivet-core run publish && yarn workspace @alpic80/rivet-node run publish && yarn workspace @alpic80/rivet-cli run publish && yarn workspace @ironclad/trivet run publish",
"test": "yarn workspace @alpic80/rivet-core run test",
"lint": "yarn workspace @alpic80/rivet-core run lint && yarn workspace @alpic80/rivet-node run lint && yarn workspace @alpic80/rivet-app run lint && yarn workspace @ironclad/trivet run lint && yarn workspace @ironclad/rivet-app-executor run lint && yarn workspace @alpic80/rivet-cli run lint",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"@octokit/rest": "^20.1.1",
"@swc/core": "^1.7.36",
"@types/eslint": "^8.56.12",
"@types/node": "^20.16.13",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"chalk": "^5.3.0",
"esbuild": "^0.25.12",
"eslint": "^9.20.1",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "5.2.0-canary-cd90a4d8-20250210",
"globals": "^15.14.0",
"prettier": "^3.3.3",
"rollup": "^4.34.6",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.7.3",
"yargs": "^17.7.2",
"zx": "^8.8.5"
},
"resolutions": {
"jest-mock": "^28.1.0",
"@types/react": "18.2.31",
"esbuild": "0.19.5"
},
"volta": {
"node": "20.4.0",
"yarn": "3.5.0"
},
"dependencies": {
"@alpic80/rivet-app": "workspace:^",
"@alpic80/rivet-core": "workspace:^",
"@alpic80/rivet-node": "workspace:^"
},
"dependenciesMeta": {
"@pnpm/exe@8.8.0": {
"unplugged": true
}
}
}