-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 KB
/
package.json
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
{
"name": "@hydra-js/core",
"version": "1.0.0-alpha.4",
"description": "Hydra JS Core Module",
"main": "dist/index.js",
"bin": {
"hydra-scripts": "./bin/hydra-scripts.js"
},
"scripts": {
"build": "babel src -d dist",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"contributors": [],
"dependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"dotenv": "^10.0.0",
"dotenv-webpack": "^8.1.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.2",
"handlebars": "^4.7.7",
"nodemon": "^3.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.94.0",
"webpack-dev-server": "^5.1.0",
"webpack-node-externals": "^3.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"jest": "^27.3.1"
},
"peerDependencies": {
"express": "^4.17.1"
},
"engines": {
"node": ">=4.0.0"
}
}