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
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "shared",
"version": "0.0.0",
"private": true,
"type": "module",
"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/"
},
"dependencies": {
"@badrap/valita": "0.3.11",
"@rocicorp/logger": "^5.3.0",
"@rocicorp/resolver": "^1.0.2",
"chalk-template": "^1.1.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"lodash.kebabcase": "^4.1.1",
"lodash.merge": "^4.6.2",
"lodash.snakecase": "^4.1.1",
"semver": "^7.5.4",
"strip-ansi": "^7.1.0",
"xxhash-wasm": "^1.1.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231010.0",
"@types/lodash.kebabcase": "^4.1.9",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.snakecase": "^4.1.9",
"@rocicorp/eslint-config": "^0.5.1",
"@rocicorp/prettier-config": "^0.2.0",
"@types/semver": "^7.5.1",
"@types/strip-ansi": "^3.0.0",
"@vitest/browser": "^2.1.5",
"fast-check": "^3.18.0",
"pkg-up": "^5.0.0",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"eslintConfig": {
"extends": "../../eslint-config.json"
},
"prettier": "@rocicorp/prettier-config"
}