-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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": "fcc-stock-chart",
"version": "0.0.1",
"description": "Stock Chart App for Free Code Camp",
"main": "./build/server.js",
"scripts": {
"test": "mocha",
"build": "start webpack --watch & start tsc --watch & start nodemon ./build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZackWard/fcc-stock-chart.git"
},
"author": "Zack Ward",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZackWard/fcc-stock-chart/issues"
},
"homepage": "https://github.com/ZackWard/fcc-stock-chart#readme",
"dependencies": {
"d3": "^4.6.0",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"helmet": "^3.4.0",
"material-components-web": "^0.5.0",
"mongodb": "^2.2.24",
"request": "^2.79.0",
"socket.io": "^1.7.3",
"vue": "^2.1.10",
"vuex": "^2.1.2"
},
"devDependencies": {
"@types/d3": "^4.5.0",
"@types/express": "^4.0.35",
"@types/socket.io": "^1.4.28",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.2",
"vue-loader": "^11.1.1",
"vue-template-compiler": "^2.1.10"
}
}