forked from aykhan019/statify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "statify",
"private": true,
"version": "0.0.0",
"description": "Music streaming analytics application built on the Spotify Million Playlist Dataset",
"license": "MIT",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm --filter @statify/shared --filter @statify/db run build && pnpm -r --parallel --filter=./apps/* run dev",
"setup": "bash scripts/setup.sh",
"build": "pnpm -r run build",
"typecheck": "pnpm -r run typecheck",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm --filter @statify/shared --filter @statify/db run build && pnpm -r run test",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prisma": "5.22.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,yml,yaml,css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@prisma/client": "5.22.0"
}
}