-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.32 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "agencia-amiga",
"version": "0.0.1",
"private": true,
"description": "Agência Amiga",
"homepage": "http://gitlab.com/djalmajr/agencia-amiga#readme",
"bugs": {
"url": "http://gitlab.com/djalmajr/agencia-amiga/issues"
},
"license": "MIT",
"author": "Djalma Jr <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "[email protected]:djalmajr/agencia-amiga.git"
},
"scripts": {
"build:dev": "webpack --config webpack.config.js",
"build:dll": "webpack --config webpack.dll.config.js",
"clean": "rimraf public/js",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"server": "cross-env NODE_ENV=development node server.js",
"postinstall": "npm run build:dll && npm run build:dev",
"start": "npm run server"
},
"dependencies": {
"classnames": "^2.2.5",
"fbjs": "^0.8.9",
"firebase": "^3.6.4",
"html-entities": "^1.2.0",
"latinize": "^0.4.0",
"localforage": "^1.4.3",
"lodash": "^4.17.2",
"moment": "^2.16.0",
"normalizr": "^2.2.1",
"react": "^15.4.0",
"react-custom-scrollbars": "^4.0.1",
"react-datepicker": "^0.40.0",
"react-dom": "^15.4.0",
"react-images": "^0.5.2",
"react-notification-system": "^0.2.11",
"react-prop-types": "^0.4.0",
"react-redux": "^4.4.6",
"react-router-dom": "^4.0.0-beta.6",
"redux": "^3.6.0",
"redux-actions": "^0.13.0",
"redux-async-initial-state": "^0.2.0",
"redux-saga": "^0.13.0",
"reselect": "^2.5.4",
"semantic-ui-react": "^0.61.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-root-import": "^4.1.5",
"babel-runtime": "^6.18.0",
"concurrent-transform": "^1.0.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"es6-promise": "^4.0.5",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-babel-root-import": "0.0.2",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"exports-loader": "^0.6.3",
"express": "^4.14.0",
"faker": "^3.1.0",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-awspublish": "^3.3.0",
"html-webpack-plugin": "^2.24.1",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"morgan": "^1.8.1",
"node-sass": "^3.13.0",
"open": "0.0.5",
"postcss-loader": "^1.1.1",
"proxy-middleware": "^0.15.0",
"react-hot-loader": "^3.0.0-beta.2",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"redux-immutable-state-invariant": "^1.2.4",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"strip-loader": "^0.1.2",
"striptags": "^2.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.13.2",
"webpack-merge": "^2.6.1",
"webpack-umd-external": "^1.0.2",
"whatwg-fetch": "^2.0.1"
}
}