-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 985 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 985 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
34
{
"name": "algodoo-monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"marblerace": "pnpm --filter marblerace-app run start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"devDependencies": {
"typescript": "^5.4.0",
"esbuild": "^0.21.3",
"vitest": "^1.6.0",
"@types/node": "^20.11.0",
"tsup": "^8.0.0",
"eslint": "^9.11.0",
"@eslint/js": "^9.11.0",
"typescript-eslint": "^8.7.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-n": "^17.10.2",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3"
}
}