-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 754 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 754 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
30
31
32
33
{
"name": "code-charter",
"version": "0.0.1",
"private": true,
"description": "Code Charter monorepo",
"packageManager": "npm@10.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean"
},
"devDependencies": {
"@types/node": "^20.0.0",
"turbo": "^2.3.3",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"@ariadnejs/core": "^0.8.0",
"@ariadnejs/types": "^0.8.0"
}
}