-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.82 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "readerfront",
"private": true,
"version": "4.3.0",
"license": "MIT",
"author": "dvaJi",
"keywords": [
"react",
"styled-components",
"standard-version",
"manga",
"manga-reader",
"manga-cms",
"progressive-web-app"
],
"bugs": {
"url": "https://github.com/dvaJi/ReaderFront/issues"
},
"scripts": {
"startall": "concurrently \"npm:start:*\"",
"build:all": "turbo run build",
"start:web": "yarn workspace @readerfront/web run dev",
"prod:web": "yarn workspace @readerfront/web run start",
"test:web": "yarn workspace @readerfront/web run test:ci",
"lint:web": "yarn workspace @readerfront/web run lint",
"build:web": "yarn workspace @readerfront/web run build",
"start:admin": "yarn workspace @readerfront/admin run start",
"test:admin": "yarn workspace @readerfront/admin run test:ci",
"lint:admin": "yarn workspace @readerfront/admin run lint",
"build:admin": "yarn workspace @readerfront/admin run build",
"start:api": "yarn workspace @readerfront/api run start",
"prod:api": "yarn workspace @readerfront/api run start:prod",
"test:api": "yarn workspace @readerfront/api run test:ci",
"lint:api": "yarn workspace @readerfront/api run lint",
"build:api": "yarn workspace @readerfront/api run build",
"test:shared": "yarn workspace @readerfront/shared run test:ci",
"build:shared": "yarn workspace @readerfront/shared run build",
"test:ui": "yarn workspace @readerfront/ui run test:ci",
"build:ui": "yarn workspace @readerfront/ui run build",
"db:migrate": "yarn workspace @readerfront/api run db:migrate",
"setup:db": "yarn workspace @readerfront/api run setup:db"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"concurrently": "^7.2.2",
"eslint": "^8.19.0",
"turbo": "^1.3.1"
}
}