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
28 lines (28 loc) · 693 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 693 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
{
"name": "zero-protocol",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"check-types": "tsc",
"check-types:watch": "tsc --watch",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@badrap/valita": "0.3.11"
},
"devDependencies": {
"@rocicorp/eslint-config": "^0.5.1",
"@rocicorp/prettier-config": "^0.2.0",
"shared": "0.0.0",
"typescript": "^5.6.3"
},
"eslintConfig": {
"extends": "../../eslint-config.json"
},
"prettier": "@rocicorp/prettier-config"
}