-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.61 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
{
"name": "timelining",
"version": "1.0.0",
"description": "status: in-progress, early-stage",
"scripts": {
"db:up": "docker-compose -f ./test/test-env/docker-compose.yml up -d",
"db:down": "docker-compose -f ./test/test-env/docker-compose.yml down --remove-orphans",
"db:reset": "docker-compose -f ./test/test-env/docker-compose.yml down -v && docker volume rm neo4j_data",
"wait:neo4j": "node ./test/scripts/health-check.cjs",
"test": "pnpm run db:up && pnpm run wait:neo4j && jest && pnpm run db:down",
"set:webhook": "tsx scripts/setWebhook.ts",
"get:webhook": "tsx scripts/getWebhook.ts",
"triggerWorker": "tsx scripts/triggerWorker.ts",
"dev": "next dev --turbopack",
"build": "next build"
},
"dependencies": {
"@upstash/redis": "^1.34.5",
"axios": "^1.8.2",
"dotenv": "^16.4.7",
"inquirer": "^12.6.0",
"neo4j-driver": "4",
"next": "^15.3.1",
"node-telegram-bot-api": "^0.63.0",
"supertest": "^7.1.0",
"typescript": "^5.8.3",
"winston": "^3.17.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@next/eslint-plugin-next": "^15.3.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "19.1.2",
"@types/supertest": "^6.0.3",
"@types/yargs": "^17.0.33",
"@vercel/node": "^2.3.0",
"eslint": "^9.26.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.0.0",
"jest": "^29.7.0",
"node-mocks-http": "^1.16.2",
"ts-jest": "^29.3.0",
"tsx": "^4.19.4",
"typescript-eslint": "^8.32.0",
"wait-on": "^8.0.3"
}
}