-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 977 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": "productspage",
"version": "1.0.0",
"description": "Products page for micro frontend",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"babel": "babel --plugins @babel/plugin-transform-react-jsx ./src/index.js --out-file ./build/main.js"
},
"keywords": [],
"author": "Jagat Jeevan Sahoo",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"style-loader": "^1.1.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-react-jsx": "^7.8.3"
}
}