-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
44
45
46
47
48
{
"name": "@howtocodewell/header-menu",
"version": "1.4.0",
"description": "How To Code Well Header Menu",
"main": "dist/HeaderMenu.js",
"scripts": {
"start": "npm run build:style",
"build": "babel src/HeaderMenu.js --out-dir dist",
"clean": "rm dist/HeaderMenu.js",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/howToCodeWell/header-menu.git"
},
"keywords": [
"react",
"js",
"javascript"
],
"author": "@howtocodewell",
"license": "MIT",
"bugs": {
"url": "https://github.com/howToCodeWell/header-menu/issues"
},
"homepage": "https://github.com/howToCodeWell/header-menu#readme",
"dependencies": {
"react": "^19.1.1",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/node": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"babel-loader": "^10.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}