-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "react-scratch",
"version": "1.0.0",
"description": "React from scratch with webpack",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open --colors --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adelsagemilang/react-scratch.git"
},
"keywords": [
"react",
"scratch"
],
"author": "Adelsa",
"license": "ISC",
"bugs": {
"url": "https://github.com/adelsagemilang/react-scratch/issues"
},
"homepage": "https://github.com/adelsagemilang/react-scratch#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"style-loader": "^0.23.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"lodash": "^4.17.11",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.0",
"redux": "^3.7.2",
"redux-form": "^7.2.1",
"redux-thunk": "^2.3.0"
}
}