-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 878 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 878 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
{
"name": "react-examples",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "vite $INIT_CWD -c ./vite.config.js",
"lint": "eslint $INIT_CWD --fix || prettier $INIT_CWD --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheOdinProject/react-examples.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/TheOdinProject/react-examples/issues"
},
"homepage": "https://github.com/TheOdinProject/react-examples#readme",
"dependencies": {
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"prettier": "2.7.1",
"vite": "^8.0.14"
}
}