-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 971 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
36
{
"name": "reactsample",
"version": "1.0.0",
"description": "**NPM :**",
"main": "server.js",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-hot-loader": "^4.3.12",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.25.0",
"webpack-bundle-tracker": "^0.4.2-beta",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.local.config.js --progress --mode development",
"build-prod": "webpack --config webpack.prod.config.js --progress --mode production",
"watch": "node server.js"
},
"babel": {
"presets": [
"env",
"react"
]
},
"author": "Nithin",
"license": "MIT"
}