-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 Bytes
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
{
"name": "@microsoft/snapfeed-react-example",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"clean": "rm -rf .tmp dist playwright-report test-results",
"dev": "vite",
"dev:server": "tsx scripts/dev-server.ts",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed"
},
"dependencies": {
"html2canvas": "^1.4.1",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/node": "^25.5.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^6.0.1",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"vite": "^8.0.3"
}
}