-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.27 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
52
53
54
{
"name": "Picake",
"private": true,
"packageManager": "yarn@4.9.4",
"workspaces": [
"apps/*/*",
"apps/backend",
"apps/web-user",
"apps/web-seller",
"apps/web-admin",
"packages/*"
],
"scripts": {
"common:lint": "eslint --cache --max-warnings=0 .",
"common:lint:fix": "eslint --cache --fix .",
"common:format": "prettier --write .",
"common:format:check": "prettier --check .",
"backend:dev": "yarn workspace @picake/backend dev",
"backend:build:staging": "yarn workspace @picake/backend build:staging",
"backend:build:production": "yarn workspace @picake/backend build:production",
"postinstall": "yarn workspace @picake/backend postinstall",
"db:migrate:dev": "yarn workspace @picake/backend db:migrate:dev",
"db:migrate:status": "yarn workspace @picake/backend db:migrate:status",
"db:migrate:deploy": "yarn workspace @picake/backend db:migrate:deploy",
"db:migrate:deploy:status": "yarn workspace @picake/backend db:migrate:deploy:status",
"db:seed:dev": "yarn workspace @picake/backend db:seed:dev",
"db:seed:staging": "yarn workspace @picake/backend db:seed:staging",
"db:studio:dev": "yarn workspace @picake/backend db:studio:dev",
"web-user:dev": "yarn workspace @picake/web-user dev",
"web-user:build": "yarn workspace @picake/web-user build",
"web-user:storybook": "yarn workspace @picake/web-user storybook",
"web-user:storybook:build": "yarn workspace @picake/web-user build-storybook",
"web-seller:dev": "yarn workspace @picake/web-seller dev",
"web-seller:build": "yarn workspace @picake/web-seller build",
"web-seller:storybook": "yarn workspace @picake/web-seller storybook",
"web-seller:storybook:build": "yarn workspace @picake/web-seller build-storybook",
"web-admin:dev": "yarn workspace @picake/web-admin dev",
"web-admin:build": "yarn workspace @picake/web-admin build"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.0.0",
"prettier": "^3.0.0",
"typescript": "5.5.4"
},
"resolutions": {
"@types/passport": "1.0.17",
"fast-xml-parser": "5.5.7"
}
}