-
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.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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": "phantom-workspace",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.9.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:docs": "concurrently \"pnpm --filter @phantom/core watch\" \"pnpm --filter @phantom/docs dev\"",
"dev:klange": "pnpm --filter phantomklange run dev:with-core",
"test": "turbo run test",
"lint": "turbo run lint",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter={./packages/*} && changeset publish",
"clean": "turbo run clean && rimraf node_modules",
"format": "prettier --write ."
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"concurrently": "^9.1.2",
"eslint": "^9.25.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"rimraf": "^6.0.1",
"turbo": "^2.5.2",
"typescript": "^5.5.3"
},
"rules": {
"prettier/prettier": true
},
"pnpm": {
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
}
}
}