-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.74 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": "neo-sleep-platform",
"private": true,
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"apps/*",
"packages/*",
"services/*"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --format codeframe",
"typecheck": "tsc -b",
"test": "npm run test --workspaces --if-present",
"test:e2e": "playwright test",
"i18n:extract": "node scripts/i18n/extract.mjs",
"i18n:unused": "node scripts/i18n/unused.mjs",
"i18n:prune": "node scripts/i18n/prune.mjs",
"build:website": "pnpm --filter @neo/website build",
"build:app": "pnpm --filter @neo/app build",
"lockfile:check": "./scripts/lockfile-check.sh",
"ci": "pnpm -r lint && pnpm -r typecheck && pnpm -r test",
"ci:npm": "npm run lint --workspaces --if-present && npm run typecheck --workspaces --if-present && npm run test --workspaces --if-present",
"prepare": "husky",
"start": "./scripts/start.sh",
"dev": "pnpm exec concurrently --names api,app,website -c blue,green,magenta \"pnpm --filter @neo/api dev\" \"pnpm --filter @neo/app dev\" \"pnpm --filter @neo/website dev\"",
"db:seed": "docker compose exec -T postgres psql -U neosleep -d neosleep < services/api/migrations/009_dev_seed_2hco_4hcp.sql"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"concurrently": "^9.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.0.0",
"husky": "^9.1.7",
"jsdom": "^25.0.0",
"prettier": "^3.2.5",
"supertest": "^7.0.0",
"typescript": "^5.6.0",
"vitest": "^4.0.0"
}
}