forked from web-dave/ngx-snake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.63 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
{
"name": "ngx-snake",
"version": "1.0.0",
"scripts": {
"installer": "cd backend && npm install && cd ../frontend && npm install",
"ci:build": "cd backend && npm ci && cd ../frontend && npm ci",
"clean": "npm run be:clean && npm run fe:clean",
"build": "npm run be:build && npm run fe:build",
"test": "npm run be:test && npm run fe:test",
"lint": "npm run be:lint && npm run fe:lint",
"docker:local:up": "cd docker/local && docker-compose up -d",
"docker:local:down": "cd docker/local && docker-compose down",
"docker:test:up": "cd docker/test && docker-compose up -d",
"docker:test:down": "cd docker/test && docker-compose down",
"docker:dev:up": "cd docker/dev && docker-compose up -d",
"docker:dev:down": "cd docker/dev && docker-compose down",
"be:clean": "cd backend && npm run clean",
"be:prisma": "cd backend && npx prisma generate && npm run test:create:db && npx prisma migrate deploy",
"be:start": "cd backend && npm run start",
"be:watch": "cd backend && npm run watch",
"be:build": "cd backend && npm run build",
"be:test": "cd backend && npm run test",
"be:test:coverage": "cd backend && npm run test:coverage",
"be:lint": "cd backend && npm run lint",
"be:format": "cd backend && npm run format",
"fe:clean": "cd frontend && npm run clean",
"fe:watch": "cd frontend && npm run watch",
"fe:build": "cd frontend && npm run build",
"fe:test": "cd frontend && npm run test",
"fe:lint": "cd frontend && npm run lint",
"fe:gen-service": "cd frontend && npm run gen-service",
"config": "cd frontend && ts-node set-env.ts"
},
"private": true
}