-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.28 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
48
49
{
"name": "platzi-video",
"version": "0.1.0",
"description": "",
"main": "webpack.config.dev.js",
"scripts": {
"build:dev": "webpack --config ./webpack.dev.config.js --watch",
"build": "webpack",
"build:local": "webpack --env.NODE_ENV=local",
"build:prod": "webpack -p --env.NODE_ENV=production"
},
"repository": {
"type": "git",
"url": "https://github.com/jjyepez/platzi-video"
},
"keywords": [
"@jjyepez"
],
"author": "jjyepez <[email protected]>",
"license": "MIT",
"dependencies": {
"immutable": "3.8.2",
"normalizr": "3.2.4",
"prop-types": "15.6.0",
"react": "16.1.1",
"react-dom": "16.1.1",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-immutable": "4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"clean-webpack-plugin": "0.1.17",
"css-loader": "0.28.7",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.5",
"redux-devtools-extension": "^2.13.2",
"style-loader": "0.19.0",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.3"
}
}