-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.94 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.94 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "select_title",
"version": "1.0.0",
"description": "A simple project to fecthData from a api and show the informations as a sortable and filterable list.",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p --display-error-details --config ./webpack.config.js --progress",
"dev": "webpack-dev-server",
"start": "NODE_ENV=production node server.js",
"eslint": "./node_modules/.bin/eslint --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcarva/select_title.git"
},
"keywords": [
"react",
"redux",
"list"
],
"author": "Jaelson Carvalho <jaelsoncarvalhojr@gmail.com> (https://github.com/jcarva)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jcarva/select_title/issues"
},
"homepage": "https://github.com/jcarva/select_title#readme",
"dependencies": {
"antd": "^2.10.0",
"axios": "^0.16.1",
"babel-eslint": "^7.2.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"express": "^4.15.2",
"immutability-helper": "^2.2.2",
"path": "^0.12.7",
"react": "^15.4.2",
"react-data-grid": "^2.0.46",
"react-data-grid-addons": "^2.0.46",
"react-dom": "^15.4.2",
"react-redux": "^5.0.5",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-import": "^1.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"favicons-webpack-plugin": "0.0.7",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}