-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.32 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
{
"name": "orcinus-dashboard",
"version": "0.1.0",
"description": "Web dashboard for Orcinus",
"main": "index.js",
"scripts": {
"oauth-patch": "patch -p1 src/app/components/signin/Signin.js < patch/Signin-oauth.patch && patch -p1 src/app/components/signup/Signup.js < patch/Signup-oauth.patch",
"start": "npm run build",
"build": "webpack -d && cp src/index.html dist/index.html && webpack-dev-server --host 0.0.0.0 --port 8008 --content-base src/ --inline --hot --history-api-fallback",
"build:prod": "NODE_ENV=production webpack -p && cp src/index.html dist/index.html",
"prod": "npm run build:prod && node src/server/server.js"
},
"keywords": [
"Orcinus",
"Dashboard"
],
"author": "Miral Achmed <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/orcinustools/dashboard.git"
},
"dependencies": {
"axios": "^0.15.3",
"bootstrap": "^3.3.7",
"chart.js": "^2.5.0",
"classnames": "^2.2.5",
"express": "^4.14.1",
"font-awesome": "^4.7.0",
"jquery": "^1.12.4",
"js-yaml": "^3.9.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"prop-types": "^15.5.9",
"querystring": "^0.2.0",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-chartjs-2": "^2.0.5",
"react-dom": "^15.4.2",
"react-google-login": "^2.8.5",
"react-notification-system-redux": "^1.1.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-select": "^1.0.0-rc.3",
"redux": "^3.6.0",
"redux-form": "^6.7.0",
"redux-logger": "^2.8.2",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"redux-devtools-extension": "^2.13.0",
"resolve-url-loader": "^2.0.0",
"sass-loader": "^6.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}