-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 853 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 853 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
33
34
35
{
"name": "odontogram",
"version": "1.0.0",
"private": true,
"description": "Odontogram migrated to React + Vite",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpoch/odontogram.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wpoch/odontogram/issues"
},
"homepage": "https://github.com/wpoch/odontogram#readme",
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@vitejs/plugin-react": "^5.1.3",
"vite": "^7.3.1"
}
}