-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "react-boilerplate",
"version": "0.0.1",
"description": "This is the react boilerplate repository - replace me",
"main": "src/js/main.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"watch": "NODE_ENV=development webpack-dev-server --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aicioara-boilerplate/react.git"
},
"author": "Andrei Cioara",
"license": "MIT",
"bugs": {
"url": "https://github.com/aicioara-boilerplate/react/issues"
},
"homepage": "https://github.com/aicioara-boilerplate/react#readme",
"dependencies": {
"bootstrap": "4.3.1",
"jquery": "3.4.1",
"popper.js": "1.15.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "7.0.3",
"react-router": "5.0.0",
"react-router-dom": "5.0.0",
"redux": "4.0.1",
"redux-persist": "5.10.0",
"redux-persist-transform-filter": "0.0.18",
"redux-thunk": "2.3.0"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.6",
"css-loader": "2.1.1",
"eslint": "5.16.0",
"eslint-plugin-react": "7.13.0",
"file-loader": "3.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"webpack": "4.31.0",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.3.1",
"webpack-merge": "4.2.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}