forked from vicharanashala/crowd-source-faq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "shamagama",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "turbo dev",
"dev:backend": "turbo dev --filter=yaksha-faq-backend",
"dev:frontend": "turbo dev --filter=yaksha-faq-frontend",
"build": "turbo build",
"test": "turbo test",
"test:run": "turbo test:run",
"test:e2e": "tsx scripts/run-e2e.ts",
"test:all": "turbo test:run && npm run test:e2e",
"lint": "eslint . --ext .ts,.tsx",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^25.9.1",
"@types/range-parser": "^1.2.7",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"mongodb-memory-server": "^9.2.0",
"prettier": "^3.2.5",
"tsx": "^4.22.3",
"turbo": "^2.5.0",
"typescript": "^6.0.3"
},
"dependencies": {
"sharp": "^0.34.5"
},
"packageManager": "pnpm@9.15.0"
}