-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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
{
"name": "twitter-stream",
"version": "1.0.0",
"description": "This application can organize tweets into groups based on total sums of (retweets + likes) of particular tweet.",
"main": "index.js",
"keywords": [
"twitter",
"tweet",
"reactjs"
],
"author": "Alexander Batalygin",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.6.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-runtime": "^6.20.0",
"concurrently": "^3.1.0",
"css-loader": "^0.14.5",
"es6-module-transpiler": "^0.10.0",
"eslint": "^3.12.2",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.8.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"jquery": "^3.1.1",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lodash": "^4.17.4",
"postcss-loader": "^1.2.1",
"redux-devtools-extension": "^1.0.0",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-polyfill": "^6.20.0",
"babel-runtime": "^6.20.0",
"flickity": "^2.0.5",
"moment": "^2.17.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"twitter": "^1.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm install",
"build": "set production=true && webpack --config webpack.config.js --progress --colors",
"prestart": "npm install",
"start": "concurrently \"node server.js\" \"webpack-dev-server --config webpack.config.js --inline --hot --progress --colors\""
}
}