-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
81 lines (81 loc) · 3.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"private": true,
"workspaces": [
"cli",
"packages/sdk"
],
"devDependencies": {
"@snaplet/copycat": "5.0.0",
"@tsconfig/node18": "1.0.1",
"@tsconfig/strictest": "2.0.0",
"@types/fs-extra": "9.0.13",
"@types/pg": "8.10.9",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"axios": "1.4.0",
"cdk": "2.82.0",
"dotenv-cli": "7.3.0",
"esbuild": "0.18.6",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"knip": "2.16.0",
"pg": "8.11.3",
"pm2": "5.3.0",
"prettier": "3.2.4",
"ts-patch": "3.0.0-beta3",
"tsx": "4.2.0",
"turbo": "1.9.1",
"typescript": "5.3.3",
"vite-node": "0.30.1"
},
"packageManager": "[email protected]",
"resolutions": {
"@types/react": "17.0.9",
"@types/yargs": "17.0.24",
"vite": "4.3.0-beta.4",
"webpack": "5.78.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.13.2",
"pg-protocol@*": "patch:pg-protocol@npm%3A1.6.0#./.yarn/patches/pg-protocol-npm-1.6.0-089a4b1d3c.patch",
"pg-protocol@^1.6.0": "patch:pg-protocol@npm%3A1.6.0#./.yarn/patches/pg-protocol-npm-1.6.0-089a4b1d3c.patch",
"[email protected]": "patch:pg-protocol@npm%3A1.6.0#./.yarn/patches/pg-protocol-npm-1.6.0-089a4b1d3c.patch",
"siphash@^1.1.0": "patch:siphash@npm%3A1.1.0#./.yarn/patches/siphash-npm-1.1.0-da47c7a043.patch",
"[email protected]": "patch:yargs@npm%3A17.7.1#./.yarn/patches/yargs-npm-17.7.1-0758ec0e50.patch",
"[email protected]": "patch:yargs@npm%3A17.7.1#./.yarn/patches/yargs-npm-17.7.1-0758ec0e50.patch",
"yargs@^16.2.0": "patch:yargs@npm%3A17.7.1#./.yarn/patches/yargs-npm-17.7.1-0758ec0e50.patch",
"yargs@^17.0.0": "patch:yargs@npm%3A17.7.1#./.yarn/patches/yargs-npm-17.7.1-0758ec0e50.patch",
"yargs@^15.3.1": "patch:yargs@npm%3A17.7.1#./.yarn/patches/yargs-npm-17.7.1-0758ec0e50.patch",
"yargs@^17.0.1": "patch:yargs@npm%3A17.7.1#./.yarn/patches/yargs-npm-17.7.1-0758ec0e50.patch",
"[email protected]": "patch:aws-cdk-lib@npm%3A2.84.0#./.yarn/patches/aws-cdk-lib-npm-2.84.0-f3099fd809.patch",
"[email protected]": "patch:aws-cdk-lib@npm%3A2.84.0#./.yarn/patches/aws-cdk-lib-npm-2.84.0-f3099fd809.patch",
"@redwoodjs/[email protected]": "patch:@redwoodjs/cli@npm%3A1.0.0-rc.3#./.yarn/patches/@redwoodjs-cli-npm-1.0.0-rc.3-6200380c11.patch",
"@monaco-editor/loader@^1.3.3": "patch:@monaco-editor/loader@npm%3A1.3.3#./.yarn/patches/@monaco-editor-loader-npm-1.3.3-f252d6bf1e.patch"
},
"scripts": {
"snaplet-dev": "yarn vite-node -r ./cli ./cli/src/index.ts -- ",
"clean": "FORCE_COLOR=1 turbo run clean",
"build": "FORCE_COLOR=1 turbo run build",
"build:binary": "FORCE_COLOR=1 turbo run build:binary",
"bundle:production": "FORCE_COLOR=1 turbo run bundle:production",
"dev": "FORCE_COLOR=1 turbo run dev",
"lint": "CI=1 eslint --max-warnings 0 \"{api,cli,web}/**/*.{ts,tsx}\" \"packages/sdk/**/*.ts\"",
"esbuild": "esbuild",
"type-check": "tsc --build",
"test": "FORCE_COLOR=1 turbo run test",
"test:e2e": "FORCE_COLOR=1 turbo run test:e2e",
"prd": "pm2 start --only 'prd-api' -i max",
"deploy": "node scripts/deploy.js 2>&1 | logger -t deploy &",
"exec-task-logs": "node ./scripts/execTaskLogs.js",
"unpublish-cli": "node ./scripts/unpublishCLI.js",
"upgrade-deps": "yarn upgrade-interactive"
},
"engines": {
"node": "18.18.2"
}
}