-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·127 lines (127 loc) · 4.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ICOStats",
"version": "1.0.0",
"description": "ICO Stats NodeJS Application",
"main": "dist/server.js",
"scripts": {
"start": "nodemon --inspect=0.0.0.0:9229 --watch dist/server.js dist/server.js",
"start:workers": "node dist/workers.js",
"dev": "webpack --config scripts/webpack/webpack.config.dev.js --watch",
"build": "webpack --config scripts/webpack/webpack.config.prod.js",
"test-server": "mocha-webpack --webpack-config scripts/webpack/webpack.config.standalone.js --require babel-polyfill \"tests/server/_setup.js\" \"tests/server/**/*.js\"",
"test": "mocha-webpack --watch --webpack-config scripts/webpack/webpack.config.standalone.js --require babel-polyfill \"tests/client/**/*.js\" \"tests/shared/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/coopermaruyama/express-react-boilerplate.git"
},
"author": "Cooper Maruyama",
"license": "MIT",
"dependencies": {
"apollo-client": "^1.9.1",
"babel-polyfill": "^6.22.0",
"bignumber.js": "^4.0.2",
"body-parser": "^1.16.0",
"chalk": "^2.1.0",
"chart.js": "^2.6.0",
"classnames": "^2.2.5",
"dotenv": "^4.0.0",
"east": "^0.5.5",
"east-mongo": "^0.3.2",
"express": "^4.15.4",
"express-winston": "^2.4.0",
"gdax": "^0.4.2",
"graphql": "^0.10.5",
"graphql-server-express": "^1.1.0",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.1.0",
"graphql-type-json": "^0.1.4",
"ioredis": "^3.1.2",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongoose": "^4.11.6",
"node-cache": "^4.1.1",
"nodemailer": "^4.0.1",
"nodemon": "^1.11.0",
"optics-agent": "^1.1.6",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-apollo": "^1.4.12",
"react-dom": "^15.6.1",
"react-jss": "^7.0.2",
"react-motion": "^0.5.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"react-router-redux": "5.0.0-alpha.6",
"react-transition-group": "^1.1.3",
"react-web3": "^0.4.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"web3": "^0.20.0",
"winston": "^2.3.1",
"winston-loggly-bulk": "^2.0.0",
"ws": "^3.1.0"
},
"devDependencies": {
"@types/async": "2.0.31",
"@types/bluebird": "^3.5.8",
"@types/bluebird-global": "^3.5.3",
"@types/body-parser": "^1.16.4",
"@types/chalk": "^0.4.31",
"@types/chart.js": "^2.6.2",
"@types/classnames": "^2.2.0",
"@types/dotenv": "^4.0.0",
"@types/express": "^4.0.36",
"@types/graphql": "^0.10.2",
"@types/graphql-type-json": "^0.1.1",
"@types/isomorphic-fetch": "^0.0.34",
"@types/lodash": "^4.14.72",
"@types/mongoose": "^4.7.19",
"@types/morgan": "^1.7.32",
"@types/node-cache": "^4.1.0",
"@types/nodemailer": "^3.1.1",
"@types/optics-agent": "^1.1.1",
"@types/prop-types": "^15.5.1",
"@types/react": "^16.0.2",
"@types/react-dom": "^15.5.2",
"@types/react-motion": "^0.0.23",
"@types/react-redux": "^5.0.1",
"@types/react-router-dom": "^4.0.7",
"@types/react-router-redux": "^5.0.5",
"@types/react-transition-group": "^2.0.2",
"@types/winston": "^2.3.4",
"@types/ws": "^3.0.2",
"awesome-typescript-loader": "^3.2.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babili-webpack-plugin": "^0.1.2",
"chai": "^4.1.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.2.0",
"flow-bin": "^0.52.0",
"json-loader": "^0.5.7",
"mocha": "^3.5.0",
"mocha-webpack": "1.0.0-rc.1",
"progress": "^2.0.0",
"typescript": "^2.4.2",
"webpack": "^3.5.4",
"webpack-node-externals": "^1.5.4"
}
}