-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "@adonisjs-lasagna/saas-tenancy-example-api",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Reference AdonisJS v7 API project demonstrating every feature of @adonisjs-lasagna/saas-tenancy",
"imports": {
"#config/*": "./config/*.js",
"#app/*": "./app/*.js",
"#start/*": "./start/*.js",
"#database/*": "./database/*.js",
"#tests/*": "./tests/*.js"
},
"scripts": {
"ace": "tsx ace.ts",
"dev": "tsx ace.ts serve --hmr",
"start": "node --import=@poppinss/ts-exec bin/server.ts",
"typecheck": "tsc --noEmit",
"test": "tsx ace.ts test",
"test:e2e": "bash ./scripts/e2e.sh",
"test:e2e:keep": "bash ./scripts/e2e.sh --keep",
"test:e2e:win": "pwsh -NoProfile -ExecutionPolicy Bypass -File ./scripts/e2e.ps1",
"infra:up": "docker compose up -d",
"infra:down": "docker compose down -v",
"setup": "tsx ace.ts backoffice:setup"
},
"dependencies": {
"@adonisjs-lasagna/saas-tenancy": "*",
"@adonisjs-lasagna/admin": "*",
"@adonisjs-lasagna/ai": "*",
"@adonisjs-lasagna/billing": "*",
"@adonisjs-lasagna/sso": "*",
"@adonisjs-lasagna/backup": "*",
"@adonisjs-lasagna/websockets": "*",
"@adonisjs-lasagna/reporting": "*",
"@adonisjs/core": "^7.0.0",
"@adonisjs/lucid": "^22.0.0",
"@adonisjs/mail": "^10.2.0",
"@adonisjs/queue": "^0.6.0",
"@adonisjs/redis": "^10.0.0",
"@poppinss/ts-exec": "^1.4.4",
"@vinejs/vine": "^4.1.0",
"luxon": "^3.0.0",
"pg": "^8.13.0",
"reflect-metadata": "^0.2.0",
"stripe": "^22.0.0"
},
"devDependencies": {
"@adonisjs/assembler": "^8.4.0",
"@japa/api-client": "^3.2.1",
"@japa/assert": "^4.0.1",
"@japa/plugin-adonisjs": "^5.0.0",
"@japa/runner": "^4.2.0",
"@types/luxon": "^3.0.0",
"@types/node": "^24.0.0",
"tsx": "^4.19.0",
"typescript": "~6.0"
}
}