-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "react_scratch",
"version": "1.0.0",
"description": "A react - webpack project from scratch",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot --config ./config/webpack.dev.js",
"build": "webpack --mode production --config ./config/webpack.prod.js",
"prod": "npm run build && history-server build --port 80",
"test": "jest --config ./test/jest.config.js"
},
"author": "TecladistaProd",
"license": "MIT",
"dependencies": {
"history-server": "^1.3.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-preset-react-app": "^3.1.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"node-sass": "^4.9.0",
"react-test-renderer": "^16.3.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^3.1.3"
}
}