forked from tonydiethelm/Marco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (34 loc) · 959 Bytes
/
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
{
"name": "marco",
"version": "1.0.0",
"description": "small test of basic front end/back end functionality in kubernetes",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development webpack serve",
"build": "webpack --mode production",
"start": "NODE_ENV=production webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonydiethelm/Marco.git"
},
"author": "Tony Diethelm",
"license": "ISC",
"bugs": {
"url": "https://github.com/tonydiethelm/Marco/issues"
},
"homepage": "https://github.com/tonydiethelm/Marco#readme",
"dependencies": {
"@babel/preset-env": "^7.19.4",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"react": "^18.2.0",
"webpack": "^5.74.0"
},
"devDependencies": {
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}