-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.43 KB
/
package.json
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
{
"name": "gensx-monorepo",
"private": true,
"packageManager": "pnpm@9.12.2",
"scripts": {
"build": "turbo run build --filter=\"./packages/*\"",
"build:examples": "turbo run build --filter=\"./examples/*\"",
"build:all": "turbo run build",
"dev": "turbo run dev --filter=\"./packages/*\"",
"lint": "turbo run lint --filter=\"./packages/*\"",
"lint:examples": "turbo run lint --filter=\"./examples/*\"",
"lint:all": "turbo run lint",
"lint:fix": "turbo run lint:fix --filter=\"./packages/*\"",
"lint:fix:examples": "turbo run lint:fix --filter=\"./examples/*\"",
"lint:fix:all": "turbo run lint:fix",
"test": "turbo run test --filter=\"./packages/*\"",
"test:examples": "turbo run test --filter=\"./examples/*\"",
"test:all": "turbo run test",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.0.0",
"turbo": "^2.3.3",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0"
}
}