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
35 lines (35 loc) · 1.2 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.2 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
{
"name": "@blocknote/tests",
"private": true,
"version": "0.13.4",
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"playwright": "npx 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.43.1-focal npx playwright test",
"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.35.1-focal npm install && playwright test -c playwright-ct.config.ts -u",
"clean": "rimraf dist"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@blocknote/ariakit": "^0.13.4",
"@blocknote/core": "^0.13.4",
"@blocknote/mantine": "^0.13.4",
"@blocknote/react": "^0.13.4",
"@blocknote/shadcn": "^0.13.4",
"@playwright/experimental-ct-react": "^1.42.1",
"@playwright/test": "^1.42.1",
"eslint": "^8.10.0",
"react-icons": "^5.2.1",
"rimraf": "^5.0.5"
},
"eslintConfig": {
"extends": [
"../.eslintrc.js"
]
}
}