-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "Sally",
"version": "0.0.0",
"description": "crypto exchange",
"author": "Adriaan Balt <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": "7.10.1"
},
"keywords": [
"gemini",
"poloniex",
"bittrex",
"bitcoin",
"crypto",
"cryptocurrency",
"exchange",
"altcoins"
],
"repository": {
"type": "git",
"url": "https://github.com/adriaanbalt/sally.git"
},
"config": {
"destination_dir": "public",
"source_dir": "source",
"build_scripts_dir": "bin"
},
"scripts": {
"analyze": "webpack-dev-server -d --inline --hot --config $npm_package_config_build_scripts_dir/webpack/webpack.analyze.config.js --watch --progress",
"start": "webpack-dev-server -d --inline --hot --config $npm_package_config_build_scripts_dir/webpack/webpack.dev.config.js --watch --progress",
"watch": "webpack-dev-server -d --inline --hot --config $npm_package_config_build_scripts_dir/webpack/webpack.dev.config.js --watch --progress",
"build": "webpack -d --config $npm_package_config_build_scripts_dir/webpack/webpack.prod.config.js",
"prod": "node server"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"css-loader": "^0.28.4",
"dotenv": "^4.0.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"node-sass": "^4.7.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-metrics-graphics": "^0.6.3",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.1",
"redux-thunk": "^2.2.0",
"request": "~2.33.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"superagent": "^3.5.2",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^3.1.0"
},
"devDependencies": {
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.5.1"
}
}