-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 841 Bytes
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
{
"name": "dcip",
"version": "1.0.0",
"private": true,
"description": "D-CIP \u2014 Digital Cyber Intelligence Platform (monorepo root)",
"license": "UNLICENSED",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20.11.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"turbo": "2.1.3",
"typescript": "5.6.3"
}
}