forked from gettakaro/takaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
153 lines (153 loc) · 5.15 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "takaro",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "COMMAND=\"start\" REGEX=app ./scripts/run-all-pkgs.sh",
"start:dev": "COMMAND=\"start:dev\" ./scripts/run-all-pkgs.sh",
"shell": "docker compose exec takaro bash",
"build": "COMMAND=\"build\" ./scripts/run-all-pkgs.sh",
"clean": "npx --workspaces rimraf dist && npx --workspaces rimraf node_modules && npx rimraf node_modules",
"test": "npm --workspaces --if-present run test",
"test:unit": "COMMAND=\"--if-present test:unit\" ./scripts/run-all-pkgs.sh",
"test:integration": "npm --workspaces run --if-present test:integration",
"test:style": "npm run lint && npm run prettier",
"test:style:fix": "npm run lint:fix && npm run prettier:fix",
"lint": "npx --workspaces eslint \"**/*.{js,ts}\" --ignore-path ../../.eslintignore --no-error-on-unmatched-pattern",
"lint:fix": "npx --workspaces --if-present eslint \"**/*.{js,ts}\" --ignore-path ../../.eslintignore --fix --no-error-on-unmatched-pattern",
"prettier": "npx --workspaces --if-present prettier --check --no-error-on-unmatched-pattern 'src/**/*.{ts,md,tsx}'",
"prettier:fix": "npx --workspaces --if-present prettier --write --no-error-on-unmatched-pattern 'src/**/*.{ts,md,tsx}'",
"prepare": "[ -d '.husky' ] && husky install || true",
"e2e:webmain": "docker compose exec takaro npm run --workspace=./packages/web-main start:dev &",
"e2e:codegen": "npm run e2e:webmain && docker compose run e2e npm run --workspace=./packages/e2e codegen",
"e2e:ui": "npm run e2e:webmain && docker compose run e2e npm run --workspace=./packages/e2e dev:ui"
},
"engines": {
"node": "18.18.x",
"npm": ">=9"
},
"author": "Niek Candaele",
"license": "AGPL-3.0-or-later",
"homepage": "https://takaro.app",
"devDependencies": {
"@storybook/addon-a11y": "7.6.7",
"@storybook/addon-essentials": "7.6.7",
"@storybook/addon-links": "7.6.7",
"@storybook/builder-vite": "7.6.7",
"@storybook/cli": "7.6.7",
"@storybook/react": "7.6.7",
"@storybook/react-vite": "7.6.7",
"@testing-library/react": "^14.1.2",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^11.0.1",
"@types/he": "^1.2.0",
"@types/jest": "^27.5.2",
"@types/libqp": "^1.1.1",
"@types/lodash-es": "^4.17.6",
"@types/mocha": "^10.0.0",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.11",
"@types/node": "^18.15.11",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/safe-regex": "^1.1.3",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"class-validator": "0.13.2",
"concurrently": "^7.3.0",
"deepmerge": "^4.2.2",
"docker-compose": "^0.24.0",
"dotenv": "^16.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"fs-extra": "^11.1.1",
"he": "^1.2.0",
"husky": "^7.0.4",
"jsdom": "^24.0.0",
"libqp": "^2.0.1",
"lint-staged": "13.3.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.13",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"sharp": "^0.33.1",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"storybook": "7.6.7",
"ts-mocha": "^10.0.0",
"ts-node": "10.9.2",
"typedoc": "^0.25.9",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.31.4",
"zx": "^7.2.1"
},
"keywords": [],
"workspaces": [
"packages/*"
],
"mocha": {
"recursive": true,
"file": [
"./test/lifecycle.test.ts"
]
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.583.0",
"@aws-sdk/client-s3": "^3.583.0",
"@discordjs/rest": "^1.7.1",
"@faker-js/faker": "^7.6.0",
"@hookform/resolvers": "^3.3.4",
"@ory/client": "^1.1.21",
"@ory/elements": "^0.0.1-beta.7",
"@sentry/node": "^7.44.2",
"@sentry/tracing": "^7.44.2",
"@socket.io/redis-adapter": "^8.2.1",
"ajv": "^8.12.0",
"axios": "^1.3.4",
"body-parser": "^1.20.0",
"bullmq": "^3.10.1",
"class-transformer": "^0.5.1",
"convict": "^6.2.3",
"csv": "^6.3.6",
"discord.js": "^14.11.0",
"express": "^4.18.1",
"got": "^12.6.0",
"lodash-es": "^4.17.21",
"lodash.groupby": "^4.6.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.0",
"openid-client": "^5.4.0",
"prom-client": "^14.2.0",
"re-resizable": "^6.9.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redis": "^4.6.5",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.10.1",
"routing-controllers-openapi": "^4.0.0",
"safe-regex": "^2.1.1",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"type-fest": "^2.18.0",
"xml2js": "^0.6.2",
"yup": "^0.32.11",
"zod": "^3.21.4"
},
"overrides": {
"class-validator": "0.13.2",
"esbuild": "0.19.11"
}
}