-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.29 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": "stock-market-chart",
"version": "1.0.0",
"description": "App built on the MEAN stack that allows users to view stock data by adding and removing stocks ticker symbols",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jmcilhargey/chart-stock-market.git"
},
"author": "Joe McIlhargey",
"dependencies": {
"async": "~0.2.8",
"d3": "^4.2.3",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"mongodb": "^2.2.10",
"mongoose": "^4.4.12",
"react": "^15.3.2",
"react-addons-update": "^15.3.2",
"react-dom": "^15.3.1",
"socket.io": "^1.4.5"
},
"scripts": {
"build": "webpack",
"start": "node server/index.js",
"watch": "webpack --progress --colors --watch"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.25.0",
"html-webpack-plugin": "^2.22.0",
"longjohn": "^0.2.11",
"morgan": "^1.7.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.2"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/jmcilhargey/chart-stock-market/issues"
},
"homepage": "https://github.com/jmcilhargey/chart-stock-market#readme"
}