-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.62 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ever-rec",
"version": "0.1.0",
"description": "Ever Rec - Screen Capture, Screen Recording, Images & Video Sharing Platform",
"license": "AGPL-3.0",
"homepage": "https://rec.so",
"repository": {
"type": "git",
"url": "https://github.com/ever-co/ever-rec.git"
},
"bugs": {
"url": "https://github.com/ever-co/ever-rec/issues"
},
"private": true,
"author": {
"name": "Ever Co. LTD",
"email": "ever@ever.co",
"url": "https://ever.co"
},
"scripts": {
"dev": "turbo dev",
"dev:api": "npm run dev --filter=ever-rec-api",
"dev:portal": "npm run dev --filter=ever-rec-portal",
"dev:extensions": "npm run dev --filter=ever-rec-extension",
"build": "turbo build",
"build:api": "npm run build --filter=ever-rec-api",
"build:portal": "npm run build --filter=ever-rec-portal",
"build:extensions": "npm run build --filter=ever-rec-extension",
"build:manual": "npm run build:api && npm run build:admin && npm run build:portal && npm run build:website",
"prepare:husky": "npx husky install .husky",
"seed": "npm run ts-node -r tsconfig-paths/register --project ./apps/api/tsconfig.json apps/api/src/seeder.ts",
"seed:refresh": "npm run seed --refresh",
"sdk:generate": "npm run graphql-codegen --config ./apps/api/src/schemas/codegen.yml",
"sdk:watch": "npm run sdk:generate --watch",
"api:prod": "cd apps/api && npm run start:prod",
"lint": "turbo lint",
"type-check": "turbo type-check",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"tools"
],
"nohoist": []
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-eslint-cli": "^8.0.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"turbo": "^2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged pretty-quick --no-verify --staged"
}
},
"engines": {
"node": ">=20",
"pnpm": ">=9.9.0"
},
"packageManager": "pnpm@9.9.0",
"prettier": {
"printWidth": 120,
"singleQuote": true,
"semi": true,
"useTabs": true,
"tabWidth": 4,
"arrowParens": "always",
"trailingComma": "none",
"quoteProps": "as-needed",
"trimTrailingWhitespace": true,
"overrides": [
{
"files": "*.scss",
"options": {
"useTabs": false,
"tabWidth": 2
}
},
{
"files": "*.yml",
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
},
"snyk": true
}