-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
37
38
39
40
41
42
43
44
{
"name": "neighbourly",
"private": true,
"scripts": {
"start:dev": "turbo run start:dev --filter=@apps\/*",
"build": "turbo run build",
"build:dev": "turbo run build:dev",
"test:unit": "turbo run test:unit:run --concurrency 5",
"test:integration": "turbo run test:integration:run --concurrency 5",
"lint": "turbo run lint --concurrency 5",
"lint:fix": "turbo run lint:fix",
"frontend:dev": "npm run dev -w @apps/frontend",
"backend:dev": "npm run start:dev -w @apps/backend",
"knip": "knip --config knip.json"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"knip": "^5.0.3",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"ts-node": "^10.9.2",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"volta": {
"node": "20.11.1"
},
"engines": {
"node": "20.11.1"
},
"workspaces": [
"apps/*",
"common/*"
]
}