-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.38 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.38 KB
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
{
"name": "SampleIntegration",
"title": "SampleIntegration",
"private": true,
"description": "app",
"version": "0.0.0",
"homepage": "",
"keywords": [],
"author": "BitGuildPlatform",
"contributors": [
{
"name": "TrejGun",
"email": "TrejGun@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/BitGuildPlatform/SampleIntegration.git"
},
"bugs": {
"url": "https://github.com/BitGuildPlatform/SampleIntegration/issues"
},
"license": "closed",
"dependencies": {
"bluebird": "3.5.1",
"bootstrap": "3.3.7",
"body-parser": "1.18.3",
"express": "5.0.0-alpha.6",
"bitguild-sdk": "git+ssh://github.com/BitGuildPlatform/BitGuildPortalSDK.git#99129c530a5c12bdd96c87f63f6dbb30b120d516",
"history": "4.7.2",
"intl": "1.2.5",
"intl-locales-supported": "1.0.0",
"lodash": "4.17.10",
"morgan": "1.9.0",
"react": "16.3.2",
"react-bootstrap": "0.32.1",
"react-dom": "16.3.2",
"react-intl": "2.4.0",
"react-intl-redux": "1.0.1",
"react-recaptcha": "2.3.8",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"react-router-bootstrap": "0.24.4",
"react-router-redux": "4.0.8",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-devtools-extension": "2.13.2",
"redux-logger": "3.0.6",
"redux-saga": "0.16.0",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.36",
"@babel/core": "7.0.0-beta.36",
"@babel/node": "7.0.0-beta.36",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.36",
"@babel/plugin-proposal-decorators": "7.0.0-beta.36",
"@babel/plugin-proposal-function-bind": "7.0.0-beta.36",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.36",
"@babel/plugin-transform-runtime": "7.0.0-beta.36",
"@babel/polyfill": "7.0.0-beta.36",
"@babel/preset-env": "7.0.0-beta.36",
"@babel/preset-react": "7.0.0-beta.36",
"@babel/runtime": "7.0.0-beta.36",
"babel-eslint": "8.2.3",
"babel-loader": "8.0.0-beta.3",
"babel-plugin-lodash": "3.3.2",
"babel-plugin-transform-require-ignore": "0.1.1",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-mocha": "5.0.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-react": "7.8.2",
"eslint-plugin-standard": "3.1.0",
"file-loader": "1.1.11",
"less": "3.0.4",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.4.0",
"pm2": "2.10.4",
"postcss": "6.0.22",
"postcss-loader": "2.1.5",
"progress-bar-webpack-plugin": "1.11.0",
"prop-types": "15.6.1",
"react-hot-loader": "4.2.0",
"rimraf": "2.6.2",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-dev-middleware": "3.1.3",
"webpack-hot-middleware": "2.22.2"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"postinstall": "node_modules/.bin/pm2 update",
"build": "./build.sh",
"start": "node_modules/.bin/pm2 start ecosystem.${NODE_ENV:=development}.json",
"stop": "node_modules/.bin/pm2 delete all;",
"lint": "node_modules/.bin/eslint server/* client/* --quiet --fix",
"port": "lsof -t -i tcp:${PORT:=5000} | xargs kill"
}
}