-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "simple-react-starter",
"version": "1.0.0",
"description": "Simple starter package for React App",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"build": "webpack --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saulirajala/simple-react-starter.git"
},
"browserslist": "last 2 version, not dead",
"author": "Sauli Rajala",
"bugs": {
"url": "https://github.com/saulirajala/simple-react-starter/issues"
},
"homepage": "https://github.com/saulirajala/simple-react-starter#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12"
}
}