This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
forked from Anyesh/roombelt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.54 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
{
"name": "roombelt",
"version": "1.9.0",
"private": true,
"engines": {
"node": "10.15.1",
"npm": "6.4.1"
},
"scripts": {
"dev:frontend": "cd frontend && cross-env PORT=3001 REACT_APP_VERSION=$npm_package_version BROWSER=none react-scripts start",
"dev:backend": "cross-env PORT=3000 NODE_ENV=development nodemon --watch backend index.js",
"test:frontend": "cd frontend && cross-env NODE_PATH=./src react-scripts test",
"build:frontend": "cd frontend && cross-env REACT_APP_VERSION=$npm_package_version react-scripts build",
"heroku-postbuild": "npm run build:frontend",
"start": "node index.js",
"docker:build": "cross-env-shell docker build -t ziolko/roombelt:$npm_package_version -t ziolko/roombelt:latest .",
"docker:publish": "cross-env-shell docker push ziolko/roombelt:$npm_package_version && docker push ziolko/roombelt:latest"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^1.5.2",
"axios": "^0.19.0",
"body-parser": "^1.18.2",
"chalk": "^2.4.1",
"cookie-parser": "^1.4.3",
"create-context": "^1.0.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-promise-router": "^3.0.2",
"googleapis": "^27.0.0",
"helmet": "^3.15.0",
"ioredis": "^4.9.0",
"jsonwebtoken": "^8.5.0",
"ms": "^2.1.1",
"mysql2": "^1.6.5",
"pg": "^7.7.1",
"php-serialize": "^2.1.0",
"react-table": "^6.10.0",
"sequelize": "5.3.1",
"simple-oauth2": "^2.2.1",
"sqlite3": "^4.0.4",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-plugin-macros": "^2.4.3",
"babel-plugin-styled-components": "^1.9.2",
"cross-env": "^5.1.4",
"csv-stringify": "^5.3.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"file-saver": "^2.0.2",
"http-proxy-middleware": "^0.19.1",
"i18next": "^11.10.2",
"jest-dom": "^2.1.1",
"logrocket": "^0.6.20",
"moment": "^2.22.0",
"nodemon": "^1.18.7",
"prettier": "1.11.1",
"prop-types": "^15.6.1",
"query-string": "^6.4.2",
"react": "^16.8.6",
"react-dom": "^16.8.1",
"react-icons": "^2.2.7",
"react-redux": "^7.1.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^3.0.1",
"react-select": "^2.1.2",
"react-test-renderer": "^16.6.3",
"react-testing-library": "^5.3.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"screenfull": "^3.3.2",
"store": "^2.0.12",
"styled-components": "^4.1.2",
"webfontloader": "^1.6.28"
}
}