-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.75 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
{
"name": "airou",
"type": "module",
"version": "0.1.0",
"main": "./distribution/sources/app.js",
"description": "A personal assistant for everyday things.",
"scripts": {
"application:clean": "rm -rf ./distribution",
"application:compile": "npm run application:clean && tsc",
"application:compile.watch": "npm run application:clean && tsc -w",
"application:run.bot": "node --no-warnings --watch ./distribution/sources/application/bot/app.js",
"application:run.api": "node --no-warnings --watch ./distribution/sources/application/http/app.js",
"tests:all": "npm run tests:unit && npm run tests:integration",
"tests:unit": "node --import tsx --test ./tests/unit/*.test.ts",
"tests:integration": "node --import tsx --test ./tests/integration/*.test.ts",
"database:studio": "prisma studio --schema ./sources/infrastructure/database/system/nexus.prisma",
"database:create.migration": "prisma migrate dev --schema ./sources/infrastructure/database/system/nexus.prisma",
"database:apply.migrations": "prisma migrate deploy --schema ./sources/infrastructure/database/system/nexus.prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airscripts/airou.git"
},
"author": "airscripts",
"license": "MIT",
"bugs": {
"url": "https://github.com/airscripts/airou/issues"
},
"homepage": "https://github.com/airscripts/airou#readme",
"dependencies": {
"@prisma/client": "^5.13.0",
"fastify": "^4.26.2",
"node-fetch": "^3.3.2",
"pino": "^9.0.0",
"telegraf": "^4.16.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"prisma": "^5.13.0",
"tsx": "^4.7.3",
"typescript": "^5.4.5"
}
}