forked from Ironclad/rivet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.36 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
55
56
57
58
59
60
61
62
{
"name": "@ironclad/rivet",
"license": "MIT",
"repository": "https://github.com/ironclad/rivet",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"private": true,
"type": "module",
"scripts": {
"dev": "yarn workspace @ironclad/rivet-app-executor run build && yarn workspace @ironclad/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 @ironclad/rivet-core run build && yarn workspace @ironclad/rivet-node run build && yarn workspace @ironclad/rivet-app-executor run build && yarn workspace @ironclad/trivet run build && yarn workspace @ironclad/rivet-app run build",
"publish": "yarn workspace @ironclad/rivet-core run publish && yarn workspace @ironclad/rivet-node run publish && yarn workspace @ironclad/rivet-cli run publish",
"test": "yarn workspace @ironclad/rivet-core run test",
"lint": "yarn workspace @ironclad/rivet-core run lint && yarn workspace @ironclad/rivet-node run lint && yarn workspace @ironclad/rivet-app run lint && yarn workspace @ironclad/trivet run lint && yarn workspace @ironclad/rivet-app-executor run lint && yarn workspace @ironclad/rivet-cli run lint"
},
"devDependencies": {
"@octokit/rest": "^20.0.2",
"@swc/core": "^1.3.94",
"@types/eslint": "^8.44.6",
"@types/node": "^20.8.7",
"@types/yargs": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"chalk": "^5.3.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "npm:eslint-plugin-i@latest",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"rollup": "^4.1.4",
"ts-node": "^10.9.1",
"tsx": "^4.6.2",
"typescript": "^5.2.2",
"yargs": "^17.7.2",
"zx": "^7.2.3"
},
"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": {
"@ironclad/rivet-core": "workspace:^",
"@ironclad/rivet-node": "workspace:^"
},
"dependenciesMeta": {
"@pnpm/[email protected]": {
"unplugged": true
}
}
}