-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "switchboard",
"private": true,
"workspaces": [
"javascript/*",
"cli",
"website"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build --filter=!website*",
"build:lib": "turbo run build:lib",
"build:rust": "cargo build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"fix": "turbo run fix",
"clean": "turbo run clean",
"clean:cargo": "find . -type d \\( -name \"target\" -o -name \"test-ledger\" -o -name \".anchor\" \\) -exec rm -rf {} +",
"clean:js": "find . -type d \\( -name \"node_modules\" -o -name \"dist\" -o -name \".docusaurus\" \\) -exec rm -rf {} +",
"uprev:sdk": "./scripts/uprev-sdks.sh",
"website": "pnpm --filter=website start"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@switchboard-xyz/eslint-config": "workspace:^0.1.9",
"@types/node": "^18.15.5",
"esbuild": "^0.17.19",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"rimraf": "latest",
"shelljs": "latest",
"shx": "latest",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"turbo": "latest",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}