-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 2.76 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
{
"scripts": {
"lint:gateway": "cd gateway && npm run lint:write",
"lint:backend": "cd backend && npm run lint:write",
"lint:frontend": "cd frontend && npm run lint:write",
"install:gateway": "cd gateway && npm i",
"install:backend": "cd backend && npm i",
"lint:notification": "cd notification && npm run lint:write",
"lint:payment": "cd payment && npm run lint:write",
"lint": "npm run lint:gateway && npm run lint:backend && npm run lint:frontend && npm run lint:notification && npm run install:notification && npm run lint:payment",
"install:frontend": "cd frontend && npm install",
"install:notification": "cd notification && npm install",
"install:payment": "cd payment && npm install",
"install:all": "npm install && npm run build:shared && npm run install:gateway && npm run install:backend && npm run install:frontend && npm run install:notification && npm run install:payment",
"build:shared": "cd shared && npm install && npm run build",
"start:gateway": "cd gateway && npm run start",
"start:backend": "cd backend && npm run start",
"start:frontend": "cd frontend && npm run start",
"start:notification": "cd notification && npm run start",
"start:payment": "cd payment && npm run start",
"start": "concurrently -k -p \"{name}: {time}\" -n \"FRONTEND,GATEWAY,BACKEND,NOTIFICATION,PAYMENT\" \"npm:start:frontend\" \"npm:start:gateway\" \"npm:start:backend\" \"npm:start:notification\" \"npm:start:payment\"",
"start:custom": "concurrently -k -p \"{name}: {time}\" -n \"GATEWAY,BACKEND\" \"npm:start:gateway\" \"npm:start:backend\"",
"migrate:backend": "cd backend && npm run migrate",
"migrate:gateway": "cd gateway && npm run migrate",
"migrate:payment": "cd payment && npm run migrate",
"migrate:all": "npm run migrate:backend && npm run migrate:gateway",
"seed:backend": "cd backend && npm run seed",
"seed-prod:backend": "cd backend && npm run seed-prod",
"seed-prod:gateway": "cd gateway && npm run seed-prod",
"seed:gateway": "cd gateway && npm run seed",
"seed:payment": "cd payment && npm run seed",
"seed:all": "npm run seed:backend && npm run seed:gateway && npm run seed:payment",
"seed:all-prod": "npm run seed-prod:backend && npm run seed-prod:gateway"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^4.3.8",
"lint-staged": "^11.1.1",
"typescript": "^4.3.5"
},
"dependencies": {
"tslib": "^1.14.1"
}
}