-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "last25tweets",
"version": "1.0.0",
"description": "Example app that consumes the Twitter API to display the time & content of the last 25 tweets for any given Twitter handle.",
"private": true,
"main": "server.js",
"scripts": {
"build": "`npm bin`/webpack",
"start": "`npm bin`/webpack-dev-server --hot --inline & `npm bin`/supervisor -e 'js|coffee|json|hbs' -w 'app' -p 250 --no-restart-on exit --harmony server.js",
"postinstall": "`npm bin`/bower install && npm run build"
},
"engines": {
"node": "5.8.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "6.7.2",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"bower": "1.7.7",
"css-loader": "0.23.1",
"koa": "1.2.0",
"koa-bodyparser": "2.0.1",
"koa-handlebars": "0.5.7",
"koa-json": "1.1.1",
"koa-request": "1.0.0",
"koa-route": "2.4.2",
"koa-static": "2.0.0",
"node-metainspector": "1.2.0",
"react": "0.14.7",
"react-addons-update": "0.14.8",
"react-dom": "0.14.7",
"style-loader": "0.13.0",
"webpack": "1.12.14"
},
"devDependencies": {
"koa-webpack-dev": "1.0.2",
"npm-install-webpack-plugin": "2.0.2",
"supervisor": "0.9.1",
"webpack-dev-server": "1.14.1",
"webpack-merge": "0.8.3"
}
}