-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 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
43
{
"name": "sample-plugin-vanilla-ts",
"version": "1.0.0",
"type": "module",
"scripts": {
"clean": "rimraf dist src/public/plugin.js",
"dev": "tsx build.config.ts --dev",
"build": "tsc --project src/panel/tsconfig.json && tsc --project src/plugin/tsconfig.json && tsx build.config.ts",
"test": "jest --verbose",
"test:watch": "pnpm run test --watchAll -i --no-cache"
},
"devDependencies": {
"@qatium/sdk-testing-library": "latest",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.11.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-singlefile": "^1.0.0"
},
"dependencies": {
"@qatium/sdk": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}