-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 871 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
{
"name": "reactminichallenge",
"version": "1.0.0",
"description": "React mini challenge",
"main": "index.js",
"scripts": {
"start": "vite",
"test": "vitest",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlblom/ReactMiniChallenge.git"
},
"author": "Danielle Blom",
"license": "ISC",
"bugs": {
"url": "https://github.com/dlblom/ReactMiniChallenge/issues"
},
"homepage": "https://github.com/dlblom/ReactMiniChallenge#readme",
"dependencies": {
"@vitejs/plugin-react": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^5.4.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"jsdom": "^25.0.0",
"vitest": "^2.1.1"
}
}