-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.59 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
49
50
51
52
{
"name": "untitledradarappstack",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"private": true,
"devDependencies": {
"@types/bun": "latest",
"concurrently": "^9.1.0",
"eslint": "^8.52.0",
"eslint-plugin-react-hooks": "^5.0.0",
"if-env": "^1.0.4",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"quick-lint-js": "^3.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"reinstall": "rimraf node_modules && bun install",
"docker": "docker-compose up -d",
"docker:down": "docker-compose down",
"lint": "node_modules/.bin/quick-lint-js packages/app/app/*/* && node_modules/.bin/quick-lint-js packages/server/src/**",
"init:server": "cd packages/server && bunx prisma generate && bun .",
"init:dev-server": "cd packages/server && bunx prisma generate && bun . --hot",
"scan:app": "cd packages/app && bunx depcheck",
"scan:server": "cd packages/server && bunx depcheck",
"scan": "concurrently -p '[{name}]' -c 'bgBlue.bold,bgMagenta.bold' -n 'app,server' 'bun scan:app' 'bun scan:server'"
},
"trustedDependencies": [
"@parcel/watcher",
"@prisma/client",
"@prisma/engines",
"@sentry/cli",
"@swc/core",
"canvas",
"core-js",
"esbuild",
"linux-perf",
"microservices",
"pngquant-bin",
"prisma",
"puppeteer",
"quick-lint-js",
"react-native-share",
"sharp",
"vue-demi"
],
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}