forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 750 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 750 Bytes
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
{
"name": "datadog",
"version": "0.0.0",
"private": true,
"type": "module",
"devDependencies": {
"@rocicorp/eslint-config": "^0.7.0",
"@rocicorp/lock": "^1.0.4",
"@rocicorp/logger": "^5.4.0",
"@rocicorp/prettier-config": "^0.3.0",
"@vitest/runner": "3.0.8",
"replicache": "15.2.1",
"typescript": "~5.8.2",
"vitest": "3.0.8"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc",
"check-types:watch": "tsc --watch",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/"
},
"eslintConfig": {
"extends": "../../eslint-config.json"
},
"prettier": "@rocicorp/prettier-config"
}