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) · 867 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 867 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": "reflect-shared",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"format": "prettier --write *",
"check-format": "prettier --check *",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"build": "rm -rf out && npm run build-dts",
"build-dts": "rm -rf out/.dts/ && tsc --emitDeclarationOnly --outDir out/.dts/ && rollup --config rollup.config.js && rm -rf out/.dts",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@rocicorp/eslint-config": "^0.5.1",
"@rocicorp/prettier-config": "^0.2.0",
"esbuild": "^0.20.2",
"replicache": "15.0.0",
"rollup": "^3.24.0",
"shared": "0.0.0",
"typescript": "^5.4.2"
},
"eslintConfig": {
"extends": "@rocicorp/eslint-config"
},
"prettier": "@rocicorp/prettier-config"
}