-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"yarn redis\" \"turbo dev\"",
"build": "turbo build",
"lint": "turbo lint",
"test": "turbo test",
"typecheck": "turbo typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"redis": "docker compose run -p 6379:6379 -v ./redis-data:/data redis redis-server --save 1 1 --loglevel warning"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"globals": "^16.3.0",
"prettier": "3.6.2",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"packageManager": "yarn@4.6.0",
"resolutions": {
"esbuild": "0.25.0",
"tmp": "0.2.5",
"@babel/runtime": "^7.28.3",
"glob@^10.2.0": ">=10.5.0",
"glob@^11.0.0": ">=11.1.0"
},
"version": "0.0.0",
"engines": {
"node": ">=22.0.0",
"yarn": ">=4.6.0"
}
}