-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "react-redux-translation-example",
"version": "1.0.0",
"description": "Simple example project to demonstrate how to build a translation component with React and Redux",
"scripts": {
"dev": "webpack-dev-server",
"build": "NODE_ENV=production webpack -p"
},
"keywords": [
"react",
"redux",
"translation",
"multilingual",
"example"
],
"author": "Tom Van Rompaey",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/tvanro/react-redux-translation-example"
},
"dependencies": {
"mini.css": "^2.1.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"file-loader": "^0.11.1",
"prop-types": "^15.5.8",
"style-loader": "^0.17.0",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.5"
}
}