generated from princhcanal/nestjs-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 2.5 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
47
48
49
50
51
52
53
54
{
"name": "teknoy-ems",
"version": "1.0.0",
"engines": {
"node": "16.14"
},
"description": "Project for CPEPE463 Software Design 3",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"npm run start:backend\" \"npm run start:frontend\"",
"start:dev": "concurrently --kill-others \"npm run start:dev:backend\" \"npm run start:dev:frontend\"",
"start:backend": "npm run start --prefix backend",
"start:dev:backend": "npm run start:dev --prefix backend",
"start:frontend": "npm run start --prefix frontend",
"start:dev:frontend": "npm run start:dev --prefix frontend",
"start:prod:backend": "npm run start:prod --prefix backend",
"start:debug:frontend": "concurrently --kill-others \"npm run start:dev:backend\" \"npm run start:debug --prefix frontend\"",
"start:debug:backend": "concurrently --kill-others \"npm run start:debug --prefix backend\" \"npm run start:dev:frontend\"",
"test:backend": "npm run test --prefix backend",
"test:backend:watch": "npm run test:watch --prefix backend",
"test:backend:ci": "npm run test:ci --prefix backend",
"test:backend:mock": "npm run test:mock --prefix backend",
"test:backend:mock:watch": "npm run test:mock:watch --prefix backend",
"test:backend:mock:ci": "npm run test:mock:ci --prefix backend",
"test:frontend": "npm run test --prefix frontend",
"test:frontend:watch": "npm run test:watch --prefix frontend",
"test:frontend:ci": "npm run test:ci --prefix frontend",
"test:frontend:e2e": "npm run test:e2e --prefix frontend",
"test:frontend:e2e:ci": "npm run test:e2e:ci --prefix frontend",
"migration": "npm run prisma:migrate:deploy --prefix backend",
"prisma:generate": "npm run prisma:generate --prefix backend",
"build": "npm run build:backend",
"build:frontend": "npm run build --prefix frontend",
"build:backend": "npm run build --prefix backend",
"build:all": "npm run build --prefix frontend && npm run build --prefix backend",
"postinstall": "cd frontend && npm install && cd ../backend && npm install",
"generate:api": "npm run generate:api --prefix backend"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/citu-cpe/pnrn.git"
},
"author": "Princh Harold Cañal",
"license": "ISC",
"bugs": {
"url": "https://github.com/citu-cpe/pnrn/issues"
},
"homepage": "https://github.com/citu-cpe/pnrn#readme",
"devDependencies": {
"concurrently": "^6.2.1",
"dotenv-cli": "^6.0.0"
},
"dependencies": {}
}