-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "codeatlas",
"version": "0.0.1",
"private": true,
"description": "CodeAtlas monorepo",
"scripts": {
"build": "pnpm -r run build",
"lint": "pnpm -r run lint",
"test": "pnpm -r run test",
"type-check": "pnpm -r run type-check",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^8.57.0",
"jsdom": "^29.0.1",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"tree-sitter",
"tree-sitter-javascript",
"tree-sitter-typescript",
"tree-sitter-python",
"tree-sitter-java"
]
}
}