-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 791 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 791 Bytes
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
{
"name": "reactjs-basics",
"version": "1.0.0",
"description": "Some basic react js",
"main": "index.js",
"scripts": {
"start": "npm run build",
"build": "webpack -d && cp src/app/index.html dist/index.html && webpack-dev-server --content-base src/app --inline --hot",
"build:prod": "webpack -p && cp src/app/index.html dist/index.html"
},
"keywords": [
"reactjs"
],
"author": "Salil Cuncoliencar",
"license": "ISC",
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
}
}