This repository has been archived by the owner on Sep 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
119 lines (119 loc) · 4.31 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "run-p \"dev:*\"",
"dev:node": "cross-env NODE_ENV=development nodemon --exec 'remix build && ts-node -r tsconfig-paths/register entrypoints/server.ts' --watch entrypoints/server.ts",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev:remix": "remix watch",
"dev-prebuild": "run-p \"dev-prebuild:*\"",
"dev-prebuild:css": "tailwindcss -i ./styles/app.css -o app/styles/app.css",
"start": "c NODE_ENV=production ts-node -r tsconfig-paths/register entrypoints/server.ts",
"test:backend": "TEST_STORAGE_DIR=${TEST_STORAGE_DIR:=../hocus-resources/tests} node --trace-warnings node_modules/.bin/jest --maxWorkers=16 --maxConcurrency=8 --testTimeout 20000 --testPathIgnorePatterns=\\(app/agent/.*.test.ts extensions\\)",
"test:agent": "TEST_STORAGE_DIR=${TEST_STORAGE_DIR:=/srv/jailer/tests} node --trace-warnings node_modules/.bin/jest --maxWorkers=4 --maxConcurrency=8 app/agent/ --testTimeout 600000",
"test:startTestManager": "ts-node -r tsconfig-paths/register app/test-state-manager/server.ts",
"typecheck": "tsc -p ./tsconfig.json",
"lint": "eslint --max-warnings=0 .",
"postinstall": "ops/bin/override-prisma-types.sh",
"migrate": "wrap () { set -o nounset; prisma migrate dev --name \"$1\" && yarn run postinstall; }; wrap",
"regen": "yarn run prisma generate && ops/bin/override-prisma-types.sh",
"format:fix": "yarn run prettier -w .",
"format:check": "yarn run prettier -c ."
},
"dependencies": {
"@prisma/client": "4.7.1",
"@remix-run/node": "^1.16.1",
"@remix-run/react": "^1.16.1",
"@remix-run/serve": "^1.16.1",
"@sentry/node": "^7.57.0",
"@sinclair/typebox": "^0.28.3",
"@temporalio/client": "^1.7.4",
"@temporalio/worker": "^1.7.4",
"@types/fs-ext": "^2.0.0",
"async-mutex": "^0.4.0",
"body-parser": "^1.20.0",
"bson": "^5.1.0",
"cbor-x": "^1.5.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dockerfile-ast": "^0.5.0",
"dotenv": "^16.0.2",
"express-openid-connect": "^2.8.0",
"flowbite": "^1.6.2",
"flowbite-react": "0.4.2",
"fs-ext": "^2.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"ms": "^2.1.3",
"netmask": "^2.0.2",
"node-ssh": "^13.0.0",
"path-browserify": "^1.0.1",
"posthog-node": "^3.1.1",
"prisma": "4.7.1",
"proper-lockfile": "^4.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sshpk": "^1.17.0",
"tail": "^2.2.4",
"ts-pattern": "^4.1.2",
"unique-names-generator": "^4.7.1",
"winston": "^3.8.1",
"yaml": "^2.1.3"
},
"devDependencies": {
"@remix-run/dev": "^1.16.1",
"@remix-run/eslint-config": "^1.16.1",
"@swc/core": "^1.3.62",
"@swc/helpers": "^0.4.7",
"@swc/jest": "^0.2.26",
"@temporalio/testing": "^1.7.4",
"@types/cookie": "^0.5.1",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "2.8.8",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/netmask": "^1.0.30",
"@types/node": "16.18",
"@types/path-browserify": "^1.0.0",
"@types/pg": "^8.6.5",
"@types/proper-lockfile": "^4.1.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/ssh2": "^1.11.6",
"@types/ssh2-streams": "^0.1.9",
"@types/sshpk": "^1.17.1",
"@types/tail": "^2.2.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-n": "^16.0.0",
"jest": "^29.5.0",
"json-schema-to-typescript": "^13.0.1",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"pg": "^8.7.3",
"portfinder": "^1.0.32",
"postcss": "^8.4.16",
"prettier": "^2.8.7",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"ts-sinon": "^2.0.2",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.0.0",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=14"
}
}