-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.31 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.31 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "http://json.schemastore.org/package",
"name": "chatsift",
"packageManager": "yarn@4.3.1",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/public/*",
"packages/private/*",
"services/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chatsift/chatsift.git"
},
"bugs": {
"url": "https://github.com/chatsift/chatsift/issues"
},
"homepage": "https://github.com/chatsift/chatsift#readme",
"scripts": {
"build": "turbo run build",
"test": "vitest run",
"test:watch": "vitest",
"test:nocov": "vitest run --coverage.enabled=false",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "turbo run clean && rimraf **/node_modules",
"clean:deps": "rimraf **/node_modules",
"prisma": "dotenv -e .env.private -e .env.public -- prisma",
"db:generate": "dotenv -e .env.private -e .env.public -- prisma generate --schema=prisma/schema.prisma",
"db:migrate": "dotenv -e .env.private -e .env.public -- prisma migrate dev --schema=prisma/schema.prisma",
"db:format": "dotenv -e .env.private -e .env.public -- prisma format --schema=prisma/schema.prisma",
"db:reset": "dotenv -e .env.private -e .env.public -- prisma migrate reset --schema=prisma/schema.prisma",
"db:deploy": "dotenv -e .env.private -e .env.public -- prisma migrate deploy --schema=prisma/schema.prisma",
"db:studio": "dotenv -e .env.private -e .env.public -- prisma studio --schema=prisma/schema.prisma",
"postinstall": "is-ci || husky || true",
"update": "yarn upgrade-interactive"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-angular": "^19.8.1",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^3.2.4",
"dotenv-cli": "^10.0.0",
"eslint": "^9.35.0",
"eslint-config-neon": "^0.2.7",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lodash.merge": "^4.6.2",
"prettier": "^3.6.2",
"prisma": "^6.17.1",
"prisma-kysely": "^1.8.0",
"rimraf": "^6.0.1",
"turbo": "^2.5.8",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vitest": "^3.2.4"
},
"resolutions": {
"eslint-plugin-sonarjs": "3.0.2"
}
}