-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "emb-react-md",
"private": true,
"version": "0.0.1",
"engines": {
"node": "4.2.x",
"npm": "3.5.x"
},
"description": "CRUD application built on React Material Design",
"repository": {
"type": "git",
"url": "git@github.com:emb0624/react-md-crud.git"
},
"author": "Emmanuel Morales <emorales0024@gmail.com> (https://github.com/emb0624)",
"bugs": {
"url": "https://github.com/emb0624/react-md-crud/issues"
},
"homepage": "https://github.com/emb0624/react-md-crud",
"main": "public/app.js",
"scripts": {
"postinstall": "npm run deploy",
"start": "node server",
"build": "webpack --progress --colors",
"watch": "webpack-dev-server --inline --hot --colors",
"deploy": "set NODE_ENV=production && webpack --config ./webpack.prod.config.js",
"lint": "eslint src"
},
"license": "MIT",
"dependencies": {
"animate.css": "3.4.0",
"classnames": "2.2.3",
"css-loader": "0.23.0",
"es6-promise": "2.3.0",
"fastclick": "1.0.6",
"firebase": "2.2.9",
"font-awesome": "4.4.0",
"history": "1.16.0",
"isomorphic-fetch": "2.1.1",
"lodash": "3.10.1",
"material-ui": "0.14.3",
"node-sass": "3.4.2",
"object-assign": "4.0.1",
"path": "0.12.7",
"react": "0.14.3",
"react-dom": "0.14.3",
"react-redux": "4.4.0",
"react-router": "1.0.2",
"react-tap-event-plugin": "0.2.2",
"react-toastr": "2.4.0",
"redux": "3.3.1",
"redux-thunk": "1.0.3",
"toastr": "2.1.2",
"trim": "0.0.1",
"underscore": "1.8.3"
},
"devDependencies": {
"babel-core": "6.5.2",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.3",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"bootstrap-sass-loader": "1.0.9",
"bootstrap-sass": "3.3.6",
"eslint-plugin-react": "3.11.3",
"eslint": "1.10.3",
"express": "4.13.4",
"file-loader": "0.8.5",
"font-awesome-sass-loader": "1.0.1",
"react-hot-loader": "1.2.8",
"redux-devtools": "3.1.1",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack-dev-server": "1.10.1",
"webpack": "1.12.9"
}
}