-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "React-Twitter-training",
"version": "1.0.0",
"description": "Look up the Twitter trends regarding your location",
"main": "index.js",
"scripts": {
"start": "cp src/index.html dist/index.html && nodemon src/server/server.js --ignore src && sass --watch src/style/main.sass:dist/app/main.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Clément Sirieix",
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"flow-babel-webpack-plugin": "^1.0.1",
"jade": "^1.11.0",
"json-loader": "^0.5.4",
"node-sass": "^3.11.2",
"nodemon": "^1.11.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^3.0.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.13.1"
},
"dependencies": {
"d3": "^4.3.0",
"react-d3-library": "^1.1.7",
"react-faux-dom": "^3.0.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"twitter": "^1.4.0",
"whatwg-fetch": "^1.0.0"
}
}