-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1008 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
37
38
{
"name": "my-first-react-app",
"version": "1.0.0",
"description": "My First React Application",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puru0019/my-first-react-app.git"
},
"author": "Gopi",
"license": "ISC",
"bugs": {
"url": "https://github.com/puru0019/my-first-react-app/issues"
},
"homepage": "https://github.com/puru0019/my-first-react-app#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.5",
"less-loader": "^4.0.5",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"react-modal-bootstrap": "^1.1.1"
}
}