-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "runit",
"private": true,
"version": "1.0.0",
"description": "online editor for coding",
"engines": {
"node": ">=24.0.0"
},
"type": "module",
"scripts": {
"dev": "npm run db:setup && tsx watch src/server.ts",
"build": "npm run db:setup && tsc",
"start": "node dist/server.js",
"db:setup": "npm run db:generate && npm run db:migrate",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"db:reset": "rm -rf drizzle && npm run db:setup",
"db:drop": "drizzle-kit drop",
"test": "playwright test",
"test:ci": "npx start-server-and-test start-server http://localhost:3000 test",
"test:withDocker": "WITHOUT_DOCKER = false playwright test",
"generate:types": "tsc --emitDeclarationOnly --outDir types",
"test:debug": "npm test -- --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-rus/runit.git"
},
"author": "",
"license": "Affero GPL 3.0",
"bugs": {
"url": "https://github.com/hexlet-rus/runit/issues"
},
"homepage": "https://github.com/hexlet-rus/runit#readme",
"dependencies": {
"@trpc/server": "^11.8.0",
"better-sqlite3": "^12.4.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.44.6",
"fastify": "^5.8.5",
"zod": "^4.1.11"
},
"devDependencies": {
"@faker-js/faker": "^10.0.0",
"@playwright/test": "^1.55.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.6.2",
"drizzle-kit": "^0.31.5",
"jest": "^30.4.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}