forked from TypeCellOS/BlockNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.25 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.25 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
{
"name": "@blocknote/tests",
"private": true,
"version": "0.26.0",
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"playwright": "playwright test",
"test:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd)/..:/work/ -w /work/tests -it mcr.microsoft.com/playwright:v1.51.1-noble npx playwright test -u",
"test-ct": "playwright test -c playwright-ct.config.ts --headed",
"test-ct:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd)/..:/work/ -w /work/tests -it mcr.microsoft.com/playwright:v1.51.1-noble npx playwright test -c playwright-ct.config.ts -u",
"clean": "rimraf dist"
},
"devDependencies": {
"@types/node": "^20.11.18",
"@blocknote/ariakit": "^0.26.0",
"@blocknote/core": "^0.26.0",
"@blocknote/mantine": "^0.26.0",
"@blocknote/react": "^0.26.0",
"@blocknote/shadcn": "^0.26.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@playwright/experimental-ct-react": "1.51.1",
"@playwright/test": "1.51.1",
"eslint": "^8.10.0",
"react-icons": "^5.2.1",
"rimraf": "^5.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"eslintConfig": {
"extends": [
"../.eslintrc.js"
]
}
}