-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.31 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
{
"name": "search-tickets",
"version": "0.0.1",
"description": "Just small tickets search front-end example",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:production": "NODE_ENV='production' webpack -p",
"build:development": "webpack -w --config webpack.config.js",
"build:dev": "webpack-dev-server --debug --hot --devtool eval-source-map --output-pathinfo --watch --colors --inline --content-base public --port 8050 --host localhost",
"server": "NODE_PATH=./src nodemon server.js"
},
"author": "nDiviD",
"repository": {
"type": "git",
"url": "git://github.com/dispersio/search-tickets.git"
},
"license": "ISC",
"dependencies": {
"babel-core": "^6.24.1",
"babel-plugin-react-css-modules": "^2.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bluebird": "^3.5.0",
"camelize": "^1.0.0",
"dateformat": "^2.0.0",
"es6-promise": "^4.1.0",
"express": "^4.15.2",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"normalize.css": "^6.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^1.3.1",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.0",
"css-modules-require-hook": "^4.0.6",
"css-mqpacker": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"postcss-cssnext": "^2.10.0",
"postcss-loader": "^1.3.3",
"postcss-reporter": "^3.0.0",
"postcss-short": "^3.0.3",
"precss": "^1.4.0",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.3.2",
"style-loader": "^0.16.1",
"stylelint-webpack-plugin": "^0.7.0",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}