-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
36 lines (36 loc) · 1.06 KB
/
package.json
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
{
"private": true,
"scripts": {
"build": "tsc -b packages/tsconfig.json",
"watch": "tsc -b -w packages/tsconfig.json",
"test:unit": "cd packages; jest --projects anki-import api-client ingester core web-component api store-fs store-web interpreter",
"test": "bun run test:unit; bun run --cwd packages/backend test",
"lint": "cd packages; eslint .",
"lint:fix": "cd packages; eslint --fix .",
"checkall": "bun run lint && bun run build && bun run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"trustedDependencies": [
"@sentry/cli",
"better-sqlite3",
"core-js",
"esbuild",
"protobufjs",
"remark-wiki-link",
"sqlite3"
],
"workspaces": [
"packages/*"
],
"name": "@withorbit/umbrella"
}