-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "react-router-course",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --config config/webpack.config.dev.js",
"build": "webpack --mode production --config config/webpack.config.production.js",
"branches": "sh getbranches.sh",
"postinstall": "npm run branches"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^2.1.1",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"fs-extra": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"sass": "^1.34.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"classnames": "^2.2.6",
"js-cookie": "^2.2.0",
"promise": "^8.0.3",
"prop-types": "^15.6.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-flex-columns": "^0.4.2",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.1.1"
}
}