-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.33 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.33 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
{
"name": "kairo-services",
"version": "0.1.0",
"private": true,
"description": "Kairo Services -- hyperlocal service marketplace MVP",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && ng serve",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && ng build --configuration production",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && ng test --watch=false",
"migrate": "cd backend && npx knex migrate:latest",
"migrate:rollback": "cd backend && npx knex migrate:rollback",
"seed": "cd backend && npx knex seed:run",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npx eslint src/",
"lint:frontend": "cd frontend && ng lint",
"audit:emoji": "node scripts/check-no-emojis.js",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.1.7"
}
}