-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.09 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
53
54
{
"name": "localpulse",
"private": true,
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=22"
},
"enginesStrict": true,
"workspaces": [
"apps/*",
"packages/*",
"tools/*"
],
"scripts": {
"demo:up": "bash ./tools/demo-up.sh",
"demo:down": "bash ./tools/demo-down.sh",
"shots": "tsx ./tools/shots.ts",
"dev": "concurrently -k \"pnpm dev:api\" \"pnpm dev:web\"",
"build": "turbo run build",
"test": "turbo run test",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"types:gen": "node tools/openapi-gen.mjs",
"schemas:gen": "node packages/lp-schemas/codegen.mjs",
"openapi:dump": "uv run python apps/core-api/scripts/dump_openapi.py > packages/sdk-js/tmp/openapi.json",
"env:check": "node -e \"console.log('Node:', process.version); console.log('pnpm:', require('./package.json').packageManager); require('child_process').execSync('python --version', {encoding: 'utf8'}).split('\\n')[0].split(' ')[1] && console.log('Python:', require('child_process').execSync('python --version', {encoding: 'utf8'}).split('\\n')[0].split(' ')[1])\"",
"dev:api": "cd apps/action-engine-api && uv run uvicorn app.main:app --reload",
"dev:web": "cd apps/district-growth-web && pnpm dev"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^1.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.0.0",
"eslint-config-next": "^14.2.33",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^23.0.0",
"openapi-typescript": "^6.7.6",
"playwright": "^1.40.0",
"prettier": "^3.0.0",
"turbo": "^1.13.3",
"vitest": "^1.0.0"
}
}