-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "tweeter",
"version": "1.0.0",
"description": "Twitter Clone",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"mwatch": "watchify -t mithrilify app/*.js -o static/app-browserified.js -d -v",
"watch": "webpack",
"start": "npm run watch & node server.js",
"push": "npm run watch & git push heroku master",
"lint": "eslint src --ext .js --ext .jsx --cache"
},
"author": "Scott Pollack",
"license": "MIT",
"dependencies": {
"body-parser": "^1.14.2",
"express": "^4.13.3",
"mongoose": "^4.3.4",
"morgan": "^1.6.1",
"static-favicon": "^1.0.2",
"twit": "^2.1.1"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babelify": "^7.3.0",
"bluebird": "^3.3.5",
"dotenv": "^1.2.0",
"eslint": "^2.9.0",
"eslint-plugin-react": "^5.0.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^2.2.3",
"mithril": "^0.2.1",
"mithrilify": "0.0.6",
"moment": "^2.13.0",
"msx": "^0.4.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1",
"webpack": "^1.13.0"
}
}