-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
50 lines (50 loc) · 1.76 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
{
"name": "waku-monorepo",
"version": "0.1.0",
"type": "module",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "pnpm -r --filter='./packages/*' run dev",
"compile": "pnpm -r --filter='./packages/*' run compile",
"csb-install-FIXME": "pnpm install --no-frozen-lockfile",
"test": "prettier -c . && eslint . && tsc -b && tsc -b --noEmit `find examples -mindepth 1 -maxdepth 1 -type d ! -name '*_js'` && pnpm run --filter waku test",
"test-vite-ecosystem-ci": "pnpm run --filter waku test && playwright test --project=chromium",
"e2e": "playwright test",
"website:dev": "pnpm -F waku-website dev",
"website:build": "pnpm -F waku-website build",
"website:vercel": "pnpm run compile && pnpm run website:build --with-vercel-static && mv packages/website/.vercel/output .vercel/",
"website:prd": "pnpm run website:build && pnpm -F waku-website start"
},
"prettier": {
"singleQuote": true,
"plugins": [
"prettier-plugin-tailwindcss"
],
"tailwindConfig": "./packages/website/tailwind.config.js",
"tailwindFunctions": [
"cx"
]
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@types/babel__core": "^7.20.5",
"@types/node": "^22.10.3",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"terminate": "^2.8.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"wait-port": "^1.1.0",
"waku": "workspace:*"
}
}