-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rs-sloths-be",
"version": "1.0.0",
"description": "",
"main": ".eslintrc.js",
"workspaces": [
"./apps/*"
],
"devDependencies": {
"husky": "^8.0.1"
},
"scripts": {
"start": "concurrently -n w: npm:start:prod:*",
"start:prod:users": "cd apps/users && npm run start:prod",
"start:prod:sloths": "cd apps/sloths && npm run start:prod",
"start:prod:suggestions": "cd apps/suggestions && npm run start:prod",
"start:prod:games": "cd apps/games && npm run start:prod",
"start:prod:bff": "cd apps/bff && npm run start:prod",
"start:dev": "concurrently -n w: npm:start:dev:* --restart-tries 5 --restart-after 3000",
"start:dev:users": "cd apps/users && npm run start:dev",
"start:dev:sloths": "cd apps/sloths && npm run start:dev",
"start:dev:suggestions": "cd apps/suggestions && npm run start:dev",
"start:dev:games": "cd apps/games && npm run start:dev",
"start:dev:bff": "cd apps/bff && npm run start:dev",
"lint": "lint-staged --relative",
"lint-conc": "concurrently -n w: npm:lint:*",
"lint:bff": "cd apps/bff && npm run lint:staged",
"lint:users": "cd apps/users && npm run lint:staged",
"lint:sloths": "cd apps/sloths && npm run lint:staged",
"lint:suggestions": "cd apps/suggestions && npm run lint:staged",
"lint:games": "cd apps/games && npm run lint:staged",
"build": "npm run prisma:gen && npm run build:users && npm run build:sloths && npm run build:suggestions && npm run build:bff && npm run build:games",
"build:users": "cd apps/users && npm run build",
"build:sloths": "cd apps/sloths && npm run build",
"build:suggestions": "cd apps/suggestions && npm run build",
"build:games": "cd apps/games && npm run build",
"build:bff": "cd apps/bff && npm run build",
"prisma:gen": "npx prisma generate",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.+(ts)": [
"eslint --fix --quiet",
"tsc-files --noEmit"
],
"src/**/*.{ts,json,md}": [
"prettier --write"
]
},
"engines": {
"npm": ">=8.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThorsAngerVaNeT/rs-sloths-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThorsAngerVaNeT/rs-sloths-be/issues"
},
"homepage": "https://github.com/ThorsAngerVaNeT/rs-sloths-be#readme",
"dependencies": {
"@prisma/client": "^4.2.1",
"concurrently": "^7.3.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}