-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "cryptox",
"version": "0.0.1",
"description": "a crypto currency exchange",
"main": "index.js",
"scripts": {
"build": "webpack --config ./client/webpack.config.js",
"watch": "webpack -w --config ./client/webpack.config.js",
"dev": "nodemon server/server --ignore client"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:mountblue/november/cryptox.git"
},
"author": "team cryptX",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-validator": "^4.3.0",
"jsonwebtoken": "^8.1.0",
"material-ui": "^1.0.0-beta.26",
"material-ui-icons": "^1.0.0-beta.17",
"mongo": "^0.1.0",
"mongoose": "^4.13.7",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-jwt": "2.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-form-validator-core": "^0.3.0",
"react-google-button": "^0.4.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.8",
"eslint": "^4.14.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-material-ui": "^1.0.1",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.14.3",
"react-hot-loader": "^3.1.3",
"webpack-dev-middleware": "^2.0.3",
"webpack-hot-middleware": "^2.21.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.10.0"
}
}