-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.56 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "brightroute",
"version": "1.0.0",
"description": "AI-powered university application platform for Rwanda",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"lint:fix": "npm run lint:backend:fix && npm run lint:frontend:fix",
"lint:backend:fix": "cd backend && npm run lint:fix",
"lint:frontend:fix": "cd frontend && npm run lint:fix",
"db:seed": "cd backend && ts-node scripts/seed-data.ts basic",
"db:seed:test": "cd backend && ts-node scripts/seed-data.ts test",
"db:seed:full": "cd backend && ts-node scripts/seed-data.ts full",
"db:test": "cd backend && ts-node scripts/test-database.ts",
"db:migrate": "cd backend && npx prisma migrate dev",
"db:generate": "cd backend && npx prisma generate",
"db:studio": "cd backend && npx prisma studio",
"start": "cd backend && npm start",
"clean": "rm -rf */node_modules */dist */.next */build coverage",
"install:all": "npm install && npm run install:backend && npm run install:frontend",
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "npm run type-check:backend && npm run type-check:frontend",
"type-check:backend": "cd backend && tsc --noEmit",
"type-check:frontend": "cd frontend && tsc --noEmit"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"concurrently": "^8.2.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/username/brightroute.git"
},
"keywords": [
"education",
"university",
"rwanda",
"ai",
"recommendations"
],
"author": "BrightRoute Team",
"license": "MIT",
"dependencies": {
"@neondatabase/serverless": "^1.0.1"
}
}