-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 961 Bytes
/
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": "react-calculator",
"version": "1.0.0",
"description": "react presentation: calculator",
"main": "./index.html",
"scripts": {
"start": "webpack-dev-server --port 7210 --progress --inline --colors --compress",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "João Barradas",
"license": "ISC",
"dependencies": {
"react": "^15.5.4",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.1",
"gulp": "^3.9.1",
"node-sass": "^4.5.2",
"react-dom": "^15.5.4",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}