-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.5 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
55
{
"name": "subiteya",
"version": "1.0.0",
"description": "Plataforma para publicar videos en múltiples cuentas de TikTok",
"private": true,
"packageManager": "npm@10.2.4",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:e2e": "turbo run test:e2e",
"test:coverage": "turbo run test:coverage",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"check:config": "node scripts/check-config.mjs",
"db:migrate": "npm run migrate -w @subiteya/api",
"db:seed": "npm run seed -w @subiteya/api",
"prepare": "node -e \"try { require('husky').install() } catch (e) {}\""
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20.10.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"turbo": "^2.5.8",
"typescript": "^5.3.2"
},
"engines": {
"node": "20.x",
"npm": ">=9.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@paralleldrive/cuid2": "^3.0.4"
},
"overrides": {
"rollup": "npm:@rollup/wasm-node@^4.53.1"
}
}