-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.38 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "auction-tool-react",
"private": true,
"version": "0.1.0",
"author": "@Stbly1",
"description": "",
"repository": {
"type": "git",
"url": "__PROJECT_REPOSITORY__"
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.2",
"babel-runtime": "^6.6.1",
"bem-classnames": "^1.0.7",
"classnames": "^2.2.5",
"es6-object-assign": "^1.0.1",
"express": "^4.13.3",
"express-handlebars": "^3.0.0",
"firebase": "^3.6.6",
"history": "^2.0.0-rc2",
"immutability-helper": "^2.1.1",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-transition-group": "^15.4.1",
"react-dom": "^15.0.2",
"react-redux": "^4.0.6",
"react-router": "^2.6.0",
"react-router-redux": "^4.0.5",
"react-stamp": "^0.5.0",
"reactable": "^1.1.0",
"reactable-cacheable": "^0.6.1",
"redux": "^3.5.2",
"redux-logger": "^2.4.0",
"redux-thunk": "^1.0.3"
},
"devDependencies": {
"autoprefixer": "^6.2.3",
"babel-cli": "^6.5.1",
"babel-core": "^6.3.17",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.9",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-node5": "^11.1.0",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-1": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^1.0.6",
"css-loader": "^0.23.1",
"es6-promise": "^3.2.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"http-proxy-middleware": "^0.17.0",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"morgan": "^1.6.1",
"node-sass": "^3.4.2",
"object-assign": "^4.0.1",
"path": "^0.12.7",
"plop": "^1.5.0",
"postcss-loader": "^0.8.0",
"precss": "^1.4.0",
"progress-bar-webpack-plugin": "^1.8.0",
"react-hot-loader": "^1.3.0",
"react-transform": "0.0.3",
"react-transform-hmr": "^1.0.1",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.2",
"rimraf": "^2.4.3",
"sass-loader": "^3.1.2",
"standard": "^7.1.2",
"style-loader": "^0.13.0",
"svg-sprite-loader": "0.0.16",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-bundle-tracker": "0.0.93",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.6.0"
},
"babel": {
"presets": [
"node5",
"react",
"es2015",
"stage-1"
],
"plugins": [
"transform-runtime"
],
"env": {
"development": {
"presets": [
"react-hmre"
]
},
"production": {
"plugins": [
"transform-runtime",
"transform-react-remove-prop-types"
]
}
}
},
"scripts": {
"start": "sh ./scripts/run_webpack.sh",
"postinstall": "webpack --config ./project/webpack.prod.config.js",
"build": "sh ./scripts/build.sh",
"lint": "eslint source"
}
}